function gotoParent(url) {
	
		//send parent page to different URL
	opener.location.href = url;
	opener.focus();
	
		//close current pop-up window
	window.close();
}



