//Programmer:	Joseph P. Ptaszynski
//Date:			06/12/2001
//Program:		JavaScript that creates a window with users specified width, height, and if it uses scroll bars 
//				from the user as input:
//				1.	displayURL: the URL to display
//				2.  IMG_Name: the name of the Image link (all names must be unique!)
//				3.	varnameofwin: the variable name of the window.
//				4.	width: width in pixels.
//				5.  height: height in pixels
//				6.	scroll: use scroll bars? yes or no
//===================================================================
//function for a new vertical pop-up window for photographs
function newWindowVphoto(url,msg)
{
	window.open(url,"",'width=450,height=470');
        var url = null;
}
//function for a new vertical pop-up window for photographs
function newWindowHphoto(url,msg)
{
	window.open(url,"",'width=450,height=450');
        var url = null;
}
//function for a new vertical pop-up window for logos
function newWindowVlogo(url,msg)
{
	window.open(url,"",'width=450,height=450');
        var url = null;
}
//function for a new vertical pop-up window for logos
function newWindowHlogo(url,msg)
{
	window.open(url,"",'width=450,height=450');
        var url = null;
}
//function for a new horizontal pop-up window for helpscreens
function newWindowHhelp(url,msg)
{
	window.open(url,"",'width=680,height=530');
        var url = null;
	}
//function for a new horizontal pop-up window for smallhelpscreens
function newWindowHsmallhelp(url,msg)
{
	window.open(url,"",'width=320,height=240');
        var url = null;
	}