window.name = 'Gallery';
var intWW = 700 ;
var intWH = 560 ;
var intWT = 0;              // Popup Top Position
var intWL = 0;              // Popup Left Position
var intSWT = 0;              // Popup Top Position for Shop
var intSWL = 0;              // Popup Left Position for Shop
var intSW = screen.width;   // Screen Width
var intSH = screen.height;  // Screen Height

	if (screen) {
		// 1.33_ is a typical screen ratio (width divided by the height)
		// But we'll use 1.4 just to be safe
		if (intSW / intSH > 1.4) {
			intWL = (intSW - intWW) / 4;
			intWT = (intSH - intWH) / 2;
		}
		else {
			intWL = (intSW - intWW) / 2;
			intWT = (intSH - intWH) / 2;
		}
	}
	
	if (screen) {
			intSWL = (intSW / 2) -379;
			intSWT = (intSH / 2) -245;
	}

function goToTheGallery(strURL) {
//if (strName && strName.open) {
//if (strName && strName.open && !strName.closed) {
var strName = 'dmain';
var strOptions = ' scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0';
windowa = window.open(strURL, strName, 'width=' + intWW + ',height=' + intWH + ',left=' + intWL + ',top=' + intWT + ',' + strOptions);
 if (windowa.focus) {
 windowa.focus();
 }
}