// ------------------------------------------------------------
//	ASKDNLREG.JS
// ------------------------------------------------------------
//	Gestisce una finestra popup per la conferma
//	della registrazione utente per il download ristretto
//
//	Data: 29-12-2005
// ------------------------------------------------------------


function AskDownloadReg()
{
	var popw = window.open("/modules_cms/askdnlreg.php", "AskDownloadRegWindow", "toolbar=0, status=0, width=540, height=280") ;
	popw.moveTo((screen.width / 2) - 270, (screen.height / 2) - 140) ;
	if (!popw.opener)
		popw.opener = self; 									

	return false ;
}

function RegisterDownload()
{
	window.opener.location.href = "/modules_cms/regform.php" ;
	window.close();
}

function AbortDownload()
{
	window.returnValue = false;
	window.close();
}
