<!-- Hide JavaScript code
// Pop-Up Window Generator
// Copyright WEB 1999 All Rights Reserved
// webextractions@r67.net
// http://webextractions.cjb.net
// You may use this script for personal or non commercial use only but
// this copyright information must stay within the script
// Please enjoy this script and any
// other tools found on this site

function RadioValue(nn) {
  var myname = "document.popup." + nn + "[0].checked";
  var myvalue = eval(myname);
  if (myvalue == true) return "yes";
  else
  return "no";
}
function popIt() {
var code = "<HEAD><TITLE>Code for your Pop-up Window</TITLE></HEAD>" + "<BODY BGCOLOR = '#ffffff' TEXT = '#000000'><H2>Code for your Pop-up Window</H2>" + "<P><font color='#CBA00C'><strong>Copy and paste this code into your HTML document.<br>Change the words <font color='#FF0000'>&quot;My Window&quot;</font> to your desired button name after inserting this code into your HTML document:</font></P>" + "<P><font color='#FF0000'><TT>" + " &LT;INPUT TYPE=\"BUTTON\"  VALUE=\"My Window\" " + "onClick=\"window.open(\'" + document.popup.url.value + "\',\'" + document.popup.id.value + "\',\'width=" + document.popup.width.value + ",height=" + document.popup.height.value + ",directories=" + RadioValue("directories") + ",location=" + RadioValue("location") + ",menubar=" + RadioValue("menubar") + ",scrollbars=" + RadioValue("scrollbars") + ",status=" + RadioValue("status") + ",toolbar=" + RadioValue("toolbar") + ",resizable=" + RadioValue("resizable") + ",left=" + document.popup.left.value + ",top=" + document.popup.top.value + ",screenX=" + document.popup.screenx.value + ",screenY=" + document.popup.screeny.value + "\')\;return false\"" + "&GT;<\/TT><\/font><\/strong><\/P>";
popWin = window.open("","","width=450,height=250,scrollbars=yes,menubar=yes");
popWin.document.write(code);
popWin.document.write("<P><CENTER><FORM><INPUT TYPE='button' VALUE='Close' onClick='window.close()'  style='background-color: #B00000; color: #FFFFFF; font-weight: bolder; font-style: oblique; font-variant: normal; text-transform: uppercase; text-decoration: underline; border: medium outset #CBA00C'></CENTER></FORM></P>")


}
function preIt() {
var code = "<HEAD><TITLE>Test for your Pop-up Window</TITLE></HEAD>" + "<BODY BGCOLOR = '#ffffff' TEXT = '#000000'><H2>Test for your Pop-up Window</H2>" + "<P><font color='#CBA00C'><strong>Press the <font color='#FF0000'>&quot;My Window&quot;</font> button below to test your created Pop-up Window:</font></P>" + "<P><font color='#FF0000'><TT>" + " <INPUT TYPE=\"BUTTON\"  VALUE=\"My Window\" " + "onClick=\"window.open(\'" + document.popup.url.value + "\',\'" + document.popup.id.value + "\',\'width=" + document.popup.width.value + ",height=" + document.popup.height.value + ",directories=" + RadioValue("directories") + ",location=" + RadioValue("location") + ",menubar=" + RadioValue("menubar") + ",scrollbars=" + RadioValue("scrollbars") + ",status=" + RadioValue("status") + ",toolbar=" + RadioValue("toolbar") + ",resizable=" + RadioValue("resizable") + ",left=" + document.popup.left.value + ",top=" + document.popup.top.value + ",screenX=" + document.popup.screenx.value + ",screenY=" + document.popup.screeny.value + "\')\;return false\"" + "  style='background-color: #B00000; color: #FFFFFF; font-weight: bolder; font-style: oblique; font-variant: normal; text-transform: uppercase; text-decoration: underline; border: medium outset #CBA00C'><\/TT><\/font><\/strong><\/P>";
popWin = window.open("","","width=450,height=250,scrollbars=yes,menubar=yes");
popWin.document.write(code);
popWin.document.write("<P><CENTER><FORM><INPUT TYPE='button' VALUE='Close' onClick='window.close()'  style='background-color: #B00000; color: #FFFFFF; font-weight: bolder; font-style: oblique; font-variant: normal; text-transform: uppercase; text-decoration: underline; border: medium outset #CBA00C'></CENTER></FORM></P>")


}
function openhelp(){
help =
open("","helpWindow","resizable=yes,location=no,toolbar=no,directories=no,status=no,scrollbars=yes,menubar=no,width=500,height=250")
help.document.write("<TITLE>Image Mouseover Help</TITLE>")
help.document.write("<P><Center><B><FONT SIZE=+0><FONT COLOR='#000000'>Instructions</FONT></FONT></B></Center></P>")
help.document.write("<P><FONT COLOR='#000000'>This tool is really pretty basic and easy to use.</P>") 
help.document.write("<P>1. Select the <b>URL</b> that you want to open within the <b>POPUP WINDOW</b>.</P>") 
help.document.write("<P>2. Give the <b>POPUP WINDOW</b> a <b>NAME</b>.</P>") 
help.document.write("<P>3. Select the <b>WIDTH</b> and  <b>HEIGTH</b>, in pixels, you want the window to be.</P>") 
help.document.write("<P>4. Select the <b>WINDOW FEATURES</b> you want the window to have.</P>") 
help.document.write("<P>5. Select the <b>POPUP WINDOW LOCATION</b> in relation to where you want the window to pop up. These can be specific for IE and/or NETSCAPE browsers.</P>") 
help.document.write("<P>6. When you are satisfied with your choices, click on the<BR><b><em><u>GENERATE CODE</em></u></b> button.</P>") 
help.document.write("<P>7. Your code will appear in a <b>Popup Window</b>. Copy this code into your HTML document anywhere after the <b>&LT;body&GT;</b> tag.</P>") 
help.document.write("<P>8. Click on the <b><em><u>PREVIEW</em></u></b> button. Another <b>Popup Window</b> will appear with a button and value of <b>MY WINDOW</b>.</P>") 
help.document.write("<P>9. Click on the <b>MY WINDOW</b> button to view your actual <b>POPUP WINDOW</b>.</FONT></P>") 

help.document.write("<P><CENTER><FORM><INPUT TYPE='button' VALUE='OK' onClick='window.close()'  style='background-color: #B00000; color: #FFFFFF; font-weight: bolder; font-style: oblique; font-variant: normal; text-transform: uppercase; text-decoration: underline; border: medium outset #CBA00C'></CENTER></FORM></P>")
help.document.bgColor=('#ffffff')
help.document.close()
}
//-->