function quicklink(linkurl){
	act = linkurl.substr(0,1);
	hyperlink = linkurl.substr(2);
	if(act == "Y"){
		window.open(hyperlink,'TripodPopup');
	}else{
		location.href=hyperlink;
	}
}
function souvenir_Cat(catid){
	location.href='souvenir.php?cat='+catid;
}
function largeImage(img){
	obj = document.getElementById('largePhoto');
	obj.src=img;
}
function largeVideo(video,obj){
	obj = document.getElementById(obj);
	obj.innerHTML = '<EMBED SRC="'+video+'" WIDTH=580 HEIGHT="345" BGCOLOR="#F1F1F1" TYPE="video/quicktime" autostart="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/" /> ';
}
function popwin(myname, myheight, mywidth){
	var mywin = window.open(myname ,'','width=' + mywidth +', height=' + myheight +',location=no,directories=no,menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=no,left=0,top=0');
	mywin.focus();
}

function changelang(olang, nlang){
	var locat = window.location;
	var strlocat = locat.toString();
	strlocat = strlocat.replace("/" + olang + "/", "/" + nlang + "/");

	if (strlocat.substr(strlocat.length-1, 1) == '#')
		strlocat = strlocat.replace("#", "");
	
	window.location = strlocat;
}

