// JavaScript Document
function refresh_opener(){
	
	window.opener.location.reload(true)
}



function popup_new(){
	w=screen.width;
	h=screen.height;
	t = (screen.height-h)/2;
	l = (screen.width-w)/2;
	
	window.open('./index2.php','new','fullscreen');
}



