function popUp(theURL,winName,features) {
	window.open(theURL,winName,features);
	return false;
}

function fullScreen(theURL,winName){
	var features = 'height=' + screen.height + ',width=' + screen.width + ',resizable=1';
	var win = window.open(theURL,winName,features);
	win.moveTo(0,0);
	return false;
}

$().ready(function(){
	try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {};
	$('#email_signup').fillIn('Enter Your Email');
});

