<!--
var allowed_email = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(com|net|org|edu|gov|biz|name|info)$/i;

function val_email() {
	var form = document.signup;
	if (allowed_email.test(form.email.value) === false) {
		alert('Please enter a valid email addres');
		return false;	
	}
}

function load_iframe_copy(text,id,iframe)
{
	if (document.getElementById)
	{
		//x = document.getElementById(id);
		x = window.frames[iframe].document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = window.frames[iframe].document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = window.frames[iframe].document.layers[id];
		x.document.open();
		x.document.write(text);
		x.document.close();
	}
}
function load_copy(text,id)
{
	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = document.layers[id];
		x.document.open();
		x.document.write(text);
		x.document.close();
	}
}
function change_img(img_obj,img_src){
	if(document.images)document.images[img_obj].src=img_src;
}
function WE_get_center_pos_of_screen(){
	this.w=(WEis.ns6 || WEis.ns45)?window.innerWidth:document.body.clientWidth;
	if(this.w < 750) { this.w = 750; }
	return this.w/2;
}
function WE_Position_Objects(way,obj,center,top)
{
	if(WEis.ns) { var arg = window.innerWidth - document.body.clientWidth; center = (center - (arg)); }
	if(arg){
		if(WEis.mac)
		{
			center = center + 23;
		}
		else
		{
			center = center + 29;
		}
	}
	this.subtitle=(WEis.ns6 || WEis.ie6)?document.getElementById(obj):document.all[obj];
	this.subtitle_center=(way == 'left')?WE_get_center_pos_of_screen()-center:WE_get_center_pos_of_screen()+center;
	this.subtitle.style.left=this.subtitle_center;
	if(WEis.ie) { this.subtitle.style.top=top + 'px'; }
	else { top = top - 2; this.subtitle.style.top=top + 'px' }
	this.subtitle.style.visibility='visible';
}
function init() { WE_Position_Objects('left','bot_left',438,'350'); }
onload=init;
if(!WEis.ns45) { onresize=init; }
//-->