/****************************************************************************
daleClick(no)	daleClick(no)	daleClick(no)	daleClick(no)	daleClick(no)
*****************************************************************************
array position: 			
		[0] = url
		[1] = type
		[2] = title
		[3] = width -1:std
		[4] = heigh -1:std
*/
function daleClick(no){
	
	var navText		= document.getElementById("naviLine");
	var pageInfo 	= document.getElementById("pInf").value; //hidden field. value = page style (norm/wide)
	var pageTable 	= getValue();

	if(pageInfo.length>0 && pageInfo==pageTable[no.toString()][1]){
	//pageInfo has a value (the value represents the current pageStyle norm/wide) pageTable's value equals the new page's pageStyle norm/wide
		//We keep the pageStyle and switch only the iframe contents
		document.getElementById("show01").src = pageTable[no.toString()][0];
		//Adjust Navigation Text headline
		navText.innerHTML = ": "+pageTable[no.toString()][2];
	}
	else{
	//PageInfo has no value or the value is different from the pageTable's value (we need to switch pageStyle)
		//We switch pageStyle and pass the needed Iframe page name together with the navigation text.
		document.location.href = "../index.php"+"?target="+pageTable[no.toString()][0]+"&s="+no.toString();
	}

}

function newURL(arg){
	window.open(arg);
}
/****************************************************************************
	daleHand(e, sl)		daleHand(e, sl)		daleHand(e, sl)		daleHand(e, sl)		
*****************************************************************************/
function daleHand(e, sl){
	if(sl==0){
	//hand on
		e.style.cursor = "hand";
	}
	else{
	//hand off
		e.style.cursor = "default";	
	}

}



/****************************************************************************
	enlarge(no)		enlarge(no)		enlarge(no)		enlarge(no)		
*****************************************************************************/
function enlarge(no){
	var path = "../images/contents/";
	var floorplan = Array(	"lux_large.jpg",
							"a_large.jpg",
							"b_large.jpg",
							"c_large.jpg",
							"d_large.jpg",
							"townhouse_large.jpg",
							"resort_large.jpg", 
							"masterplan_condos_large.gif",
							"Still_1-LX.jpg",
							"Still_2-LX.jpg",
							"Still_3-LX.jpg",
							"Still_4-LX.jpg",
							"Still_5-LX.jpg",
							"Still_6-LX.jpg",
							"Still_7-LX.jpg",
							"Still_8-LX.jpg");

	window.open(path+floorplan[no],'mywin', 'left=0,top=0,width=800,height=804px,toolbar=1,resizable=1,location=1');

}
/****************************************************************************
	no right click		
*****************************************************************************/
function noCopy(e) {
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
		return false;
	}
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("Copyright© 2005, Vamos Group S.A.");
		return false;
	}
	return true;
}
