function newWPWindow(image)
{
	features = "fullscreen=yes, scrollbars=yes, top=0,left=0,location=yes,resizable=yes";
	pictureWindow = window.open("","Poocture",features);
	pictureWindow.focus();
	pictureWindow.document.write("<link rel= 'stylesheet' type='text/css' href='style.css' /><body style='background-color: #000000'><p style='color:#33CC00; text-align: center;'>DESKTOP INSTRUCTIONS<br /><br /><br />PC: Right-click on the image and select &quot;Set as background&quot;<br /><br />MAC OS9: Holding CTRL, click on the image to save it to your hard drive. Under the apple menu, select: Control Panels/Appearance. Click on the desktop tab, then click &quot;Set desktop.&quot; Choose the desktop image on your hard drive.<br /><br />MAC OSX: Holding CTRL, click on the image to save to your hard drive. Open your system preferences and click on the desktop icon. Drag the desktop image from your hard drive into the &quot;Current desktop picture&quot; area.<br /><br /></p><p style='text-align: center;'><img name='show' src='" + image + "' border='0'/></p><p style='text-align:center;'><a href='javascript:window.close()'>Close Window</a></p></body>");
}

function newTextWindow(width, height, text)
{
	features = "fullscreen=yes, scrollbars=yes,width=" + width + ",height=" + height + ", top=0,left=0,location=yes,resizable=yes";
	textWindow = window.open("","Text",features);
	textWindow.focus();
	textWindow.document.write("<link rel= 'stylesheet' type='text/css' href='style.css' /><body style='background-color: #000000'><p style='color:#33CC00; text-align: center;'>" + text +"</p><p style='text-align:center;'><a href='javascript:window.close()'>Close Window</a></p></body>");
}

function newPWindow(width, height, image)
{
	features = "fullscreen=no, scrollbars=yes,width=" + width + ",height=" + height + ", top=0,left=0,location=yes,resizable=yes";
	pictureWindow = window.open("","Poocture",features);
	pictureWindow.focus();
	pictureWindow.document.write("<link rel= 'stylesheet' type='text/css' href='style.css' /><body style='background-color: #000000'><p style='text-align:center;'><img src='" + image + "' border='0' /></p><p style='text-align:center;'><a href='javascript:window.close()'>Close Window</a></p></body>");
}

function newCWindow(image)
{
	features = "fullscreen=no, scrollbars=yes, top=0,left=0,location=yes,resizable=yes";
	pictureWindow = window.open("","Poocture",features);
	pictureWindow.focus();
	pictureWindow.document.write("<link rel= 'stylesheet' type='text/css' href='style.css' /><body style='background-color: #000000'><p style='text-align:center;'><img src='" + image + "' border='0' /></p><p style='text-align:center;'><a href='javascript:window.close()'>Close Window</a></p></body>");
}

function newBlankWindow(width, height, backgroundColor, text)
{	
	features = "fullscreen=no, scrollbars=yes, top=0,left=0,location=yes,resizable=yes, width=" + width + ",height=" + height;
	pictureWindow = window.open("","Flash",features);
	pictureWindow.focus();
	pictureWindow.document.write("<link rel= 'stylesheet' type='text/css' href='style.css' /><body style='background-color: #" + backgroundColor + "'><p style='text-align:center;'>" + text + "</p><p style='text-align:center;'><a href='javascript:window.close()'>Close Window</a></p></body>");
}