


function myPopup(){
	
	var url = document.URL;
	var name = "something";
	var ScreenWidth = screen.width;
	var ScreenHeight = screen.height;
	
	window.open(url,name,"resizable=yes,toolbar=no,scrollbars=yes,menubar=yes,status=no,directories=no,width="+ScreenWidth+",height="+ScreenHeight+",left='0',top='0'");
	
	window.opener.location;
}
