var newwin;

function openWindow(Link, Width, Height, Name, Slides){
	
	if (Width == null)
		Width = 360;
		
	if (Height == null)
		Height = 310;
	
	if (Name == null)
		Name = "WindowName";
		
		Resize = "yes";
		Scroll = "yes";
	
	winfeatures = "width=" + Width;
	winfeatures += ",height=" + Height;
	winfeatures += ",scrollbars=" + Scroll;
	winfeatures += ",resizable=" + Resize;
//	winfeatures += ",location=yes"; //use for adding the address bar for testing

	newwin = window.open(Link,Name,winfeatures);
	newwin.focus();

} // close openWindow
