/**********************************************************************/
// m_sfcon: Email Function 
// Description: the email account name is passed in, then parsed onto 
//   the domain for this web site, then launched using the 'mailto' 
//   link. This is to help prevent bots from scouring a web page to 
//   find email addresses, since it is broken up into pieces in this 
//   function
/**********************************************************************/
function m_sfcon (u) {
pre = "mail";
url = pre + "to:" + u;
document.location.href = url + "@hiddengemsbookstore.com";
}
var gallwindow = '';

function popup_gallery(productid, galleryid) {

	if (!gallwindow.closed && gallwindow.location) {
		gallwindow.location.href = 'popgallery.php?pid='+productid+'&gid='+galleryid;
	}
	else {
		gallwindow=window.open('popgallery.php?pid='+productid+'&gid='+galleryid,'name','height=630,width=700,scrollbars=no');
		if (!gallwindow.opener) gallwindow.opener = self;
	}
	
	if (window.focus) {gallwindow.focus()}

}

