﻿var win = null;
function NewWindow(mypage,myname,w,h,scroll){
w = 1000;
scroll ='yes';
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
h = (screen.height);
settings ='height='+h+',width='+w+',top='+0+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

function openDir( form ) { 
// Pull down menu (HVIS DU VIL)
	var newIndex = form.fieldname.selectedIndex;
    if (form.fieldname.options[ newIndex ].target == 'nypopup'){
	cururl = form.fieldname.options[ newIndex ].value; 
NewWindow(cururl,'name');return false;
	}
	else if ( newIndex == 0 ) { 
		alert( "Please select a location!" ); 
	} else { 
	cururl = form.fieldname.options[ newIndex ].value; 
	target = form.fieldname.options[ newIndex ].target;
	window.open(cururl, target);
	} 

}
