// GLOBAL POP

function popUp(url,popname,width,height,scroll) {
window.open(url,popname,'height='+height+',width='+width+',resizable=1,scrollbars='+scroll+',location=0,toolbar=0,status=0,left=100,top=100,screenX=100,screenY=100').focus;
}

if(document.layers){
document.write("<style>.normal {font: normal 10px/14px verdana, arial, helvetica, sans-serif; color: #333333;}</style>");
}

//------------------- OPEN NEW WINDOW -------------------//
var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpSWF(url, type, Width, Height, arg1, arg2, arg3){
	closeWin();
 	tools = "resizable=no,toolbar=no,location=no,directories=no,status=no,scroll=no,scrollbars=no,menubar=no,width="+Width+",height="+Height+",left=0,top=0";
 	if(type == "swf"){
 	newWindow = window.open(url+"?bandwidth="+arg1+"&video="+arg2+"&lan="+arg3, 'newWin', tools);
	}

	newWindow.focus();
}