function handleResize() {
  location.reload();
  return false;
}
if (document.layers) {
  window.onresize = handleResize;
}


    var width = window.screen.availWidth-10
	var height = window.screen.availHeight-10
	
	function OpenWindow1(fileName){
		if (window.screen.availWidth <950){ 	
        win1=window.open(fileName,"win1","toolbar=no,menubar=no,resizable=no,scrollbars=no,width="+width+",height="+height+",top=0,left=0,")
	}

	else {
	var top= height/2-317/2//centers window vertically
	var left= width/2-432/2
				win1=window.open(fileName,"win1","toolbar=no,menubar=no,resizable=no,scrollbars=no,width=432,height=317,top="+top+",left="+left)
				}
}
