
// JavaScript Document


function pop(url, name, w, h){	
	var theURL = url;
	var winName = name;
	var width = w;
	var height = h;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	features = 'width='+width+',height='+height+',top='+wint+',left='+winl+',toolbar=no,location=no,status=0,menubar=no,scrollbars=no,resizable=no';
	window.open(theURL,winName,features);
}

function pop_scroll(url, name, w, h){	
	var theURL = url;
	var winName = name;
	var width = w;
	var height = h;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	features = 'width='+width+',height='+height+',top='+wint+',left='+winl+',toolbar=no,location=no,status=0,menubar=no,scrollbars=yes,resizable=yes';
	window.open(theURL,winName,features);
}
