


var newwindow;

function PopUp(w,h,url)
{
	newwindow=window.open(url,'Information','height='+h+',width='+w+',left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

