function rating(){
	popupsize();
	x = (screen.width - width) / 2;
	y = (screen.height - height) / 2;
	window.moveTo(x,y);
}
function popupsize(){
	if( typeof( window.innerWidth ) == 'number' ) {
		width = window.innerWidth;
		height = window.innerHeight;
	}
	else if( document.documentElement &&( document.documentElement.clientWidth || document.documentElement.clientHeight )){
		width = document.documentElement.clientWidth;
		height = document.documentElement.clientHeight;
	}
	else if( document.body && (document.body.clientWidth || document.body.clientHeight)){
		width = document.body.clientWidth;
		height = document.body.clientHeight;
	}
}
function dspl(obj,value){
	document.getElementById(obj).value=value;
}