<!-- hide script from old browsers
var whatDoc="N/A"
	
function openVideoDetail(param) {
		var filename=" ";
		if(navigator.userAgent.indexOf('MSIE') !=-1) {
			filename="Assets/Details/"+param+".html";
		}
		else {
			filename="Assets/Details/"+param+"-noie.html";
		}
		window.open(filename,'Preview',"toolbar=0, location=0, directories=0, resizable=0, scrollbars=0, width=640, height=480, top=120, left=150, status=0");
}		

function openwin(param) {
	var winName="Fullsize Image";
	var filename = param.substring(0,param.length-4)+"full.jpg";
	window.open(filename,'Fullsize',"toolbar=0, location=0, directories=0, resizable=1, scrollbars=0, width=640, height=480, top=120, left=150, status=0");
}

function openDetail(param) {
	var winName="Detailed information";
	var filename = param.substring(param.lastIndexOf("/")+1,param.length);
		filename = filename.substring(0,filename.length-4);
		filename = "Assets/Details/"+filename+".html";
	
	window.open(filename,'Fullsize',"toolbar=0, location=0, directories=0, resizable=0, scrollbars=0, width=640, height=480, top=120, left=150, status=0");
}

function navigate() {
	selector = document.SelForm.MyCombo;
	path = selector.options[selector.selectedIndex].value;
	if(path) location.href=path;
}

function setSelection() {
	selector = document.SelForm.MyCombo;
	var subtract = whatDoc.length-2;
	var myIndex = whatDoc.substring(1,whatDoc.length-subtract);
	selector.selectedIndex = --myIndex;
}

function writeStatus(param) {
	window.status=param;
}
function clearStatus() {
	window.status="    Jaro Stun's Personal homepage";
}

function initialize() {
	setName();
	setSelection();
	clearStatus();
}
// end hiding script from old browsers -->
