function pagePopUp(psPath, psName, pnWidth, pnHeight)
{
	var nWidth  = pnWidth ; //use these vars in case we want to adjust widht/height
	var nHeight = pnHeight ;

	window.open(psPath, psName, 'width='+ nWidth + ',Height=' + nHeight +', top=20, left=130');
}//end fuction popUp

function popUp(psImage)
{
	var sImage       = new String(psImage);
	var nEndPos      = sImage.indexOf(".");
	var sFrontString = "images/products/" + sImage.substr(0,nEndPos);
	var sEndString   = sImage.substr(nEndPos);
	var sFinalImage  = sFrontString + "_large" + sEndString;
	
	window.open(sFinalImage,"products","width=450, height=400, top=50, left=50")
}//end function popUp