<!--
function centerPOP(w,h,url,name){
var there = null;
//var w = 775;
//var h = 530;
	if(window.screen){
		var hor = screen.availWidth;
		var ver = screen.availHeight;
		there = window.open(url,name,'width=' + w + ',height=' + h + ',left=' + ((hor - w - 10) * .5) + ',top=' + ((ver - h -30) * .5) + ',scrollbars=1,');
	}
}
//-->

