function popup(width,height){
	if(window.innerWidth){
	LeftPosition =(window.innerWidth-width)/2;
	TopPosition =((window.innerHeight-height)/4)-50;
			}
	else{
	LeftPosition =(parseInt(window.screen.width)-	width)/2;
	TopPosition=((parseInt(window.screen.height)-height)/2)-50;
			}
	attr = 'resizable=no,scrollbars=no,width=' + width + ',height=' +
	height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	popWin=open('', 'new_window', attr);
	popWin.document.write('<head><title>Thank You</title>
 

</head>
');
	popWin.document.write('<body><div align=center>');
	popWin.document.write('<p><br /><br /><b>Thank You</b></p>');
//	popWin.document.write('<p><br>Thank You</p>');
  	popWin.document.write('</div></body></html>');
	}

