	var launchSlideShowX = (screen.width/15);
	var launchSlideShowY = (screen.height/12);
	var pos = "left="+launchSlideShowX+",top="+launchSlideShowY;
	function launchSlideShow()
	{
		launchSlideShowWindow = window.open("slideshow.html","SlideShow","resizable=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,width=830,height=635,"+pos);
	}	
	
	function OpenNewWindow(WindowPicture, WindowParameters)
	{
  		NewWindow=window.open("","NewOne", 'location=0,resizable=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,'+pos+','+WindowParameters);
		NewWindow.document.write ("<HTML><HEAD><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><TITLE>");
		NewWindow.document.write ("Gene Cheban Photography");
		NewWindow.document.write ("</TITLE><link rel='StyleSheet' type='text/css' href='style.css'></HEAD>");
		NewWindow.document.write ("<BODY BGCOLOR='black'>");		
		NewWindow.document.write ("<CENTER><BR><TABLE border=0 cellpadding=10 cellspacing=12 class='solidwhiteborder'><TR><TD align='center' class='smallgray'>");
		NewWindow.document.write ("<TABLE border=0 cellpadding=0 cellspacing=0 class='solidgrayborder'><TR><TD align='center' class='smallgray'>");
		NewWindow.document.write ("<IMG border=0 SRC=");
		NewWindow.document.write (WindowPicture);
		NewWindow.document.write ("></TD></TR></TABLE></TD></TR></TABLE>");		
//		NewWindow.document.write ("<BR>");
//		NewWindow.document.write ("<div class='smallgray'><A HREF='JavaScript:this.close()'><font color='gray'><b>Close</b></font></A></div>");
		NewWindow.document.write ("</BODY></HTML>");
		NewWindow.document.close();
		return false;
	}

	function OpenNewWindowNoClose(WindowPicture, WindowParameters)
	{
		NewWindow=window.open("","NewOne", 'location=0,resizable=0,directories=0,status=0,menubar=0,scrollbars=0,toolbar=0,'+pos+','+WindowParameters); 		
		NewWindow.document.write ("<HTML><HEAD><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><TITLE>");
		NewWindow.document.write ("Gene Cheban Photography");
		NewWindow.document.write ("</TITLE><link rel='StyleSheet' type='text/css' href='style.css'></HEAD>");
		NewWindow.document.write ("<BODY BGCOLOR='black'>");		
		NewWindow.document.write ("<CENTER><BR><TABLE border=0 cellpadding=10 cellspacing=12 class='solidwhiteborder'><TR><TD align='center' valign='middle' class='smallgray'>");
		NewWindow.document.write ("<TABLE border=0 cellpadding=0 cellspacing=0 class='solidgrayborder'><TR><TD align='center' valign='middle' class='smallgray'>");
		NewWindow.document.write ("<IMG border=0 SRC=");
		NewWindow.document.write (WindowPicture);
		NewWindow.document.write ("></TD></TR></TABLE></TD></TR></TABLE>");		
		NewWindow.document.write ("<BR>");
		NewWindow.document.write ("</BODY></HTML>");
		NewWindow.document.close();
		return false;
	}

	function InsertMenu()
	{	
		document.write ("<CENTER>");
		document.write ("<TABLE border=0 cellspacing=4 cellpadding=0 WIDTH=790>");
		document.write ("<TR><TD height=1 bgcolor='gray'></TD></TR>");
		document.write ("<TR valign='middle'>");
		document.write ("<TD class='smallgray' ALIGN='center'><b>");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='index.html'><font color='silver'>Home</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='people.html'><font color='silver'>People</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='nature.html'><font color='silver'>Nature</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='objects.html'><font color='silver'>Objects</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='weddings.html'><font color='silver'>Weddings</font></a>&nbsp;&nbsp;");
	// document.write ("&nbsp;&nbsp;&nbsp;<a href='javascript:launchSlideShow()'><font color='silver'>Slideshow</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='pricing.html'><font color='silver'>Rates</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='links.html'><font color='silver'>Clients & Links</font></a>&nbsp;&nbsp;");
		document.write ("&nbsp;&nbsp;&nbsp;<a href='contact.html'><font color='silver'>Contact</font></a>&nbsp;&nbsp;");
		document.write ("</b></TD></TR>");
		document.write ("<TR><TD height=1 bgcolor='gray'></TD></TR>");
		document.write ("</TABLE>");
		document.write ("</CENTER>");
		return false;
	}
	
	function InsertFooter()
	{	
		document.write ("<div class='extrasmalldarkgray'>The site was created in 2003, last updated on 01/28/10. ");
		document.write ("Images contained on this website are copyrighted and may not be used without permission.");
		document.write ("</div>");
		return false;
	}

	
	