// JavaScript Document

function popup(url, l, t, w, h){
	fs = 'yes';
	var newwindow = window.open(url,'site','left=' + l + ', top=' + t + ', menubar=no,location=no,toolbar=no, fullscreen=' + fs + ', scrollbars=no, width=' + w + ',height=' + h);
	newwindow.focus();
}

function openFlashSite(){
	url = '/enarelsp2008/site-flash.htm';
	var l = 0;
	var t = 0;
	var w = screen.availWidth;
	var h = screen.availHeight;
	popup(url, l, t, w, h);
}

function homeopenFlashSite(lang_id){
	url = '/enarelsp2008/site-flash.htm?sitetype=flash&lang_id=' + lang_id;
	var l = 0;
	var t = 0;
	var w = screen.availWidth;
	var h = screen.availHeight;
	popup(url, l, t, w, h);
}
