

function openPerfectPopup(oTitle,oGateFolder,oGateStyle,oImageName) {
	var x = window.open('','windowName',"scrollbars=no,width=10,height=10,toolbar=no,location=no,directories=no,status=no,resizable=yes,copyhistory=yes");
	if( !x ) { return true; }
	x.document.open();
	

	var html = "";
	html += '<html><head><title>'+oTitle+'<\/title>';
	html += '<link rel="STYLESHEET" type="text/css" href="/css/styles.css">';
	html += '<script src="/js/popupresize.js" type="text/javascript"></script>';
	html += '<\/head><body marginheight="10" marginwidth="10" topmargin="10" leftmargin="10" onload="changeSize()">';
	html += document.layers?('<layer id="myID">'):('<div id="myID">');
	html += '<table cellpadding="2" cellspacing="0"  style="outline: 3px solid #004400;border: 1px solid #004400;padding:10px">';
	html += 	'<tr>';
	html += 		'<td><img onload="changeSize()" id="myImage" src="/images/gallery/'+oGateFolder+'/photo/'+oImageName+'"></td>';
	html += 	'</tr>';
	html += 	'<tr>';
	html += 		'<td class="bodytext12" align="center">';
	html += 			'<span class="bodytext10">Style:</span> <i>'+oGateStyle;
	html += 			'</i><br><span class="bodytext10">Image Ref:</span> '+oImageName;
	html += 		'</td>';
	html += 	'</tr>';
	
	
	
	
	html += 	'<tr>';
	html += 		'<td class="bodytext12" align="center">';
	html += 			'<a href="javascript:window.opener.location=\'/php/contact.php?contactSubj='+oImageName+'\';window.close()">Want to know more about this design?</a>';
	html += 		'</td>';
	html += 	'</tr>';
	
	
    html += '</table>';
	
	html += document.layers?'<\/layer>':'<\/div>';
	html += '<\/body><\/html>';
	
	x.document.write( html );
	x.document.close();
	
	// resize
	
		
		
		return false;
}

