/*----------------------------------
WHAT BROWSER ARE YOU?
------------------------------------*/

var isMinNS4 = (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0;
var isMinNS6 = (isMinNS4 && navigator.userAgent.indexOf("Gecko")>=0) ? 1 : 0;
var isMinIE4 = (document.all) ? 1 : 0;
var isMinIE5 = (isMinIE4 && navigator.appVersion.indexOf("5.")) >= 0 ? 1 : 0;
var isDOM = (document.getElementById) ? 1 : 0;

/*----------------------------------
OPEN POP-UP
------------------------------------*/

// Pop-up for large zoomed photos
function popPhoto(imagesrc,imgwidth,imgheight) {
	
	if (isMinNS4) {
		// Mozilla and Netscape window size fix
		winwidth = imgwidth + 4;
		winheight = imgheight + 4;
	} else {
		winwidth = imgwidth;
		winheight = imgheight;
	}
	
	//var sX = (screen.width - winwidth) / 2;
    //var sY = (screen.height - winheight) / 2;
	
	var sX = 0;
    var sY = 0;
	var wstring = "width=" + winwidth;
	var hstring = "height=" + winheight;
	
	var winParams = wstring + "," + hstring + ",left=" + sX  + ",top=" + sY + ",toolbar=0,resizable=1,scrollbars=0,location=0,status=0"
	
	popwin=window.open("","",winParams);
	popwin.document.open();
	popwin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\r\t\t"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">\r<html lang="en">\r<head>\r\t<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">\r\t<title>Reece Design :: Garment Detail<\/title>\r<\/head>\r\r<body leftmargin="0" rightmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff">\r\t<div style="text-align:center;"><a href="javascript:self.close();" title="Click anywhere to close"><img src="'+imagesrc+'" width="'+imgwidth+'" height="'+imgheight+'" border="0"><\/a><\/div>\r<\/body>\r<\/html>');
	//popwin.document.close();
}
