//Determine atributes for window for index_xx.html in next section ---------------------------------
//script determines parameters for positioning this window on screen based on visitors screendimensions ---
//Site will be openend in 'clean' window with max screen real-estate -------------------------------
if (screen.width <= 1024){
	var top=0;
	var left=0;
}
else if (screen.width > 1024){
	var top=25;
	var left=50;
}
var attribs="toolbar=0,scrollbars=0,status=0,menubar=1,resizable=1,width=1024,height=734";
// End -->

