// JavaScript Document

function ht_window(theURL) {

	
	
	if (screen.height > 950){
		heightRef = 950;
	}
	
	if (screen.height <= 950){
		heightRef = screen.height;
	}
	
	widthRef = heightRef * 1.6;

	window.open(theURL,'zoom','height=' + heightRef + ',width=' + widthRef + ',fullscreen=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0');

	
}