function closeWindow() { 
	window.top.opener = this; 
	window.top.open("","_top"); 
	window.top.close(); 
} 

function decision(message, url) { 	
	if(confirm(message)) { 
		window.open(url); 
		closeWindow(); 
	}	
} 
