/* --------------------------------------------------
	SiteName : 
	FileName : dafault.js
-------------------------------------------------- */
function openWindow(url,nm,w,h,scroll,resize){
	var newwin = window.open(url, nm,'width='+w+',height='+h+',status=no,scrollbars='+scroll+',directories=no,menubar=no,resizable='+resize+',toolbar=no');
}
function openFlvPlayer(path,ttl,bnd,tm,flv){
	var url= path+"?titletxt="+ttl+"&bandtxt="+bnd+"&timetxt="+tm+"&flvpath="+flv;
	var flvViewer = window.open(url, 'flvViewer','width=360,height=405,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}
function closeFlvPlayer(){
	window.close();
}
function linkit(filename){
	var out = document.getElementById("extra")
	out.innerHTML = '<iframe id="runnerwin" name="runnerwin" width="0" height="0" src="about:blank" style="margin:0px;padding:0px;display:none;"></iframe>';
	runnerwin.document.open();
	runnerwin.document.location.href=filename;
}