
var x, spot, ver, source;
function Arrow (x, spot, ver) {
	if (x == 1) {
		if (ver == 2) {
			eval ("document." + spot + ".src = 'images/shop_submenu_arrow_over_v2.gif';");
			} else {
			eval ("document." + spot + ".src = 'images/shop_submenu_arrow_over.gif';");
			}
		} else {
		eval ("document." + spot + ".src = 'images/shim.gif';");
		}
	}
	
var url;
function DoRedirect (url) {
	document.esmstart.calltmp.value = url;
	document.esmstart.calltmpsub.value = 'index';
	document.esmstart.submit();
	}

var lang;
function ChLang (lang) {
	document.esmstart.csr_lang.value = lang;
	document.esmstart.submit();
	}
	
// above are scripts of the new shop..

var NewWind;

function ImgViewer (url, w, h) {

	if (NewWind && !NewWind.closed) {
		NewWind.close();
		}
		
	var title = "ImgViewer";
	var props = "status,width=" + w + ",height=" + h;
	
	NewWind = window.open('', title, props);
	var prefix = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>-= Gallery - ImgViewer v.03 =-</title><meta http-equiv="imagetoolbar" content="no"><meta http-equiv="Pragma" content="no-cache"><!--<script src="http://ww2.prevolution.net/script_gallery.js" type="text/javascript"></script>--></head><body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0">';
	var mid = '<img src="' + url + '" width="' + w + '" height="' + h + '" onclick="window.close()">';
//	var mid = '<img src="' + url + '" onclick="window.close()">';
	var suffix = '</body></html>';
	var content = prefix + mid + suffix;
	NewWind.document.write(content);
	NewWind.document.close();
	NewWind.focus();
	}
	
function EsmTrailerView (url, w, h) {

	if (NewWind && !NewWind.closed) {
	NewWind.close(); 
		}

	var title = "TrailerView";
	var props = "status,resizable,width=" + (w+5) + ",height=" + (h+5);

	NewWind = window.open('', title, props);
	var prefix = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>-= EuroSexMen.com &copy; Trailer - Viewer v.01 =-</title><meta http-equiv="imagetoolbar" content="no"><meta http-equiv="Pragma" content="no-cache"><!-- <script src="http://shop.eurosexmen.com/script_gallery.js" type="text/javascript"></script> --></head><body bottommargin="0" leftmargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0" bgcolor="#000000">';
	var mid = '<embed src="' + url + '" width="' + w + '" height="' + h + '" align="center" style="border: 2px solid #808080; " autoStart="True" showcontrols="1" loop="True"><noembed>A Media Player is required.</noembed>';
	var suffix = '</body></html>';
	var content = prefix + mid + suffix;
	NewWind.document.write(content);
	NewWind.document.close();
	NewWind.focus();
	}