// = = = = hide popup layer for home page = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 

function myhide(id) { // use single '' around id inside () in <a> tag, ex. == javascript:myhide('id');return false;
	document.getElementById(id).style.visibility = "hidden"
	document.getElementById(id).style.display = "none"
}

// = = = = SEO-Friendly Pop-Up Window for Product view = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 

function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar=no,menubar=no,scrollbars=no,resizable=yes,location=no,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}



