function jumpPage2(newLoc)
{
	URL = "popup/" + newLoc;
	window.open(URL,"windowName","height=300,width=400,toolbar=0,menubar=0,directories=0,scrollbars=0,left=0,top=0");
}

function check_products_form( form_obj )
{
	error = "";
	for(i=0; i<form_obj.elements.length; i++)
	{
		if( form_obj.elements[i].type == "select-one" )
		{
			alert(form_obj.elements[i].value.indexOf("__"));
			if( form_obj.elements[i].value.indexOf("__") != -1 )
			{
				error = "Please choose a " + form_obj.elements[i].value.substring(2) + ".\n";
				break;
			}
			else
			{
				selected
			}
		}
	}

	if( error != "" )
	{
		window.alert(error);
		return false;
	}	
	
}

function popWin(image_url)
{

	width = 300;
	height = 120;
	w = screen.width;
	h = screen.height;
	sx = (w-width)/2;
	sy = (h-height)/2;

	image_url = 'golive/popup.php?image=' + image_url;
	window.open(image_url,'popupWin','status=no,resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,menubar=no,width='+width+',height='+height+',top='+sy+',left='+sx+',screenX=1,screenY=1');
}
