function comingsoon()
{
	alert('This page coming soon.');
	return false;
}

function resize2img ()
{
	window.resizeTo(document.getElementById('theImage').width + 58, document.getElementById('theImage').height + 130 );
}

function popUp(whatType)
{
	var popUpURL, popupName, popUpParams;
	
	switch (whatType)
	{
	case "image" :
		popUpURL = documentRoot + '_popup.phtml?whatType=image&&imageURL=' + arguments[1] + '&&';
		popupName = 'image';
		popUpParams = 'toolbar=1,status=0,scrollbars=1,resizable=1,height=320,width=400';
		break;
		
	default :
		popUpURL = arguments[1];
		popupName = 'popup';
		popUpParams = 'toolbar=1,menubar=0,status=1,scrollbars=1,resizable=1,height=320,width=534';
		break;
	}
	window.open(popUpURL, popupName, popUpParams);
		return false;
}