function show_photo(text,foto,width,height){
	no=window.open("", "zoom", "left=60, top=60, width="+width+", height="+height+", toolbar=no, location=no, status=no, scrollbars=auto");
	with (no.document)
	{
		open();
		writeln('<body style="margin: 0px;"><a href="javascript:void window.close();"><img src="'+text+'" style="border: 0px;"></a></body>');
		close();
		no.focus();
	}
}

function goToUrl(selObj, goToLocation) {
    eval("document.location.href = '" + goToLocation + "pos=" + selObj.options[selObj.selectedIndex].value + "'");
}
