<!--
function popWindow(url, width, height) {
	
	ran_unrounded = Math.random()*1000;
	ran_number = Math.round(ran_unrounded); 

	newwindow = window.open(url, "name"+ran_number, "status,width="+width+",height="+height+",scrollbars=yes,resizable=1");
	newwindow.focus();
	
}
-->