function enlargePopup(popupId){
	//if (trimAll(popupId).length == 0){
			//return false;
	//}
	var URL = basehref + "/product-details.php?product=" + popupId;
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + popupId + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=550,left = 365,top = 237');");
	
}
function trimAll(sString)
{
	while (sString.substring(0,1) == ' ') {
		sString = sString.substring(1, sString.length);
	}
	while (sString.substring(sString.length-1, sString.length) == ' ') {
		sString = sString.substring(0,sString.length-1);
	}
	return sString;
}
