function openDir( form ) { 
	var newIndex = form.fieldname.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Please select a location!" ); 
	} else { 
		cururl = form.fieldname.options[ newIndex ].value; 
		window.location.assign( cururl ); 
	} 
} 

function popupWindow(w,h,url,name) {
	var windowprops = "location=0,scrollbars=0,menubars=0,toolbars=no,resizable=no,scroll=no" +",width=" + w + ",height=" + h;
	var URL = ""+ url;
	var NAME = ""+ name;
	popup = window.open(URL,NAME,windowprops);
}

function lynkVideoPop(vpsize,vpid){
	url = 'http://defekt.se/videopop.php?vid='+vpid+'&url=http://defekt.se';
	xwidth = vpsize+110; xheight = (vpsize/1.3)+94;
	lvp = window.open(url,'','top=100,left=100,status=0,location=0,width='+xwidth+',height='+xheight+'');
	lvp.focus();
}
