function imageDetail(img,title){
	var newWindow
	if(img != ""){
		if(title == ""){	
			title = "Chokerz4Men";
		}
		if (!newWindow || newWindow.closed) {
			newWindow = window.open('','','top=120,left=150,height=400,width=400,toolbar=0,location=0,scrollbars=0,menubar=0,resizable=1,status=0');	
			newContent = '<html><head><title>'+title+'</title></head>';
			newContent += '<body style="margin:0;"><a href="#" onclick="self.close(); return false;"><img src="images/product/'+img+'" alt="Click here to close this window" border="0"></a></body></html>';
			newWindow.document.write(newContent);
			newWindow.document.close();
		} else {
			newWindow.focus();
		}
	}
}