
	/*
		bzlabs javascript metodlari
	*/
	
	function gv(n) {
		return getValue(n);
	}
	
	function getValue(n) {
		if(document.getElementById(n)) return document.getElementById(n).value;
	}
	
	function sv(n,v) {
		setValue(n,v);
	}
	
	function setValue(n, v) {
		if(document.getElementById(n)) document.getElementById(n).value = v;
	}
	
	function bzPopup(filename, h, w)
	{ 
		popup = window.open(filename,"popDialog","height="+h+",width="+w+",scrollbars=yes") 
		popup.focus();
		if ( popup.document.close() ) 
		{ 
			popup.document.close() 
		} 
	}
