/*
function click(e) {
var msg="Contents are Copyright Protected";
if (document.all) 		{	if (event.button == 2) 	{alert(msg);return false;} 	}
if (document.layers) 	{	if (e.which == 3) 		{alert(msg);return false;}	}
}

if (document.layers) {document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;
*/
onClick="goNewWin()"




function RtClk(Evnt) 
{
var Msg="COPYRIGHT PROTECTED!!"

if 		(navigator.appName == 'Netscape' 					&& (Evnt.which == 3 || Evnt.which == 2)  		)
		{alert(Msg); return false;} 
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3) 	) 
		{alert(Msg); return false;} 
return true;
}

document.onmousedown=RtClk;
document.onmouseup=RtClk;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=RtClk;
window.onmouseup=RtClk;
window.status = "Net del Sol Resale Property Software Program licensed to Cabopino Rentals.com";


function goNewWin() {

////// Set height and width
//var NewWinHeight=200;
//var NewWinWidth=200;

/////// Place the window
//var NewWinPutX=10;
//var NewWinPutY=10;

////////Get what is below onto one line

TheNewWin =window.open("details_form_property.php",'TheNewpop','fullscreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no'); 

////////Get what is above onto one line

//TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
//TheNewWin.moveTo(NewWinPutX,NewWinPutY);

}

function CheckAll()
{ 
var Rn1	=document.getElementById('accepted');
if 		(Rn1.checked == false){alert("Please Check This box to be able to send booking form");  Rn1.focus(); return false;} 
return true;
}
