function apple_open(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function newWindow(page,location,size) {
		locationWindow = window.open(page,location,size)
		locationWindow.focus()
}

/* Disable right click script on images - by Darren
Mackintosh 
var clickmessage="Copyright Apple Languages Ltd. 2005"

function disableclick(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			if (event.srcElement.tagName=="IMG"){
				alert(clickmessage);
			return false;
			}
		}
	}
	else if (document.layers) {
		if (e.which == 3) {
			alert(clickmessage);
		return false;
		}
	}
	else if (document.getElementById){
		if (e.which==3&&e.target.tagName=="IMG"){
			alert(clickmessage)
		return false
		}
	}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
	document.images[i].onmousedown=disableclick;
	}

if (document.all)
	document.onmousedown=disableclick
else if (document.getElementById)
	document.onmouseup=disableclick
else if (document.layers)
	associateimages()
*/