function JumpURL(selection) {
var tempIndex, selectedURL;
tempIndex = selection.selectedIndex;
selectedURL = selection.options[tempIndex].value;
window.open(selectedURL, 'netselect');
//window.top.location.href = selectedURL;
}

function checkForm(formName)
{
	if(formName == 'newsForm')
	{
	if(chkField('your_name','Your Name',formName)) return false;
	if(chkField('your_email','Your Email',formName)) return false;
	if(validEmail('your_email',formName)) return false;
	if(chkField('name','Name',formName)) return false;
	if(chkField('email','Email',formName)) return false;
	if(validEmail('email',formName)) return false;
	if(chkField('message','Message',formName)) return false;
	}

	if(formName == 'emailForm')
	{
	// Contact Form
	if(chkField('email','Email',formName)) return false;
	if(validEmail('email',formName)) return false;
	if(chkField('subject','Subject',formName)) return false;
	if(chkField('message','Message',formName)) return false;
	}

	if(formName == 'galleryForm')
	{
	// Popup
	if(chkField('sender_name','Your Name',formName)) return false;
	if(chkField('sender_email','Your Email',formName)) return false;
	if(validEmail('sender_email',formName)) return false;
	if(chkField('recipient_name','Name',formName)) return false;
	if(chkField('recipient_email','Email',formName)) return false;
	if(validEmail('recipient_email',formName)) return false;
	if(chkField('message','Message',formName)) return false;
	}

	if(formName == 'addtonewsletter')
	{
	if(chkField('name','Name',formName)) return false;
	if(chkField('email','Email',formName)) return false;
	if(validEmail('email',formName)) return false;		
	}
}
