function openFlash() {
	window.self.open('flash.html','windowname','fullscreen=no,scrollbars=no,top=0,left=0, width=800,height=600');
}

function PreLoad() {
var doc=document; if(doc.images){ if(!doc.newarray) doc.newarray=new Array();
var x,y=doc.newarray.length,a=PreLoad.arguments; for(x=0; x<a.length; x++)
if (a[x].indexOf("#")!=0){ doc.newarray[y]=new Image; doc.newarray[y++].src=a[x];}}
}
function select_item(i){ //open content in parent window
	var val = i.options[i.selectedIndex].value;
	i.selectedIndex = 0;
	if (val != "line"){
		top.location.href = val;
	}
}

function init(){
	;
}

function newWindow(){
	if (myForm.PageSelection.value != "none") {
		Newpage = window.open(myForm.PageSelection.value);
	}
}

function openSesame(i) { //open content in separate window
	var val = i.options[i.selectedIndex].value;
	i.selectedIndex = 0;
	if (val != "line"){
		Newpage = window.open(val);
//		top.location.href = val;
	}
}
