function SmallWindow() 
 
{
   
	// open the popup window
   
	var popupURL = "./cahnerslides/slide1.htm";
   
  	var popup = window.open(popupURL,"SmallWindow",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,width=400,height=300');
   
	// set the opener if it's not already set.  it's set automatically
   
	// in netscape 3.0+ and ie 3.0+.
   
	if( navigator.appName.substring(0,8) == "Netscape" )
   
	{
   
		popup.location = popupURL;
   
	}
   
}
   
SmallWindow();