function $(id){return document.getElementById(id);}
function $F(id){return $(id).value;}
function mygo(){
	var key= document.getElementById('search').value;
//	alert(key);
	window.location="./index.php?mod=search&key="+key;
}

var search_txt;

function mySearch(obj,type){

	
	if(type==0){
		search_txt=obj.value;
		obj.value="";
	}

	if(type==1){
		if(obj.value=="")
		obj.value=search_txt;
	}
}
function popup(URL)
{ 
	window.open(URL, "","scrollbars=yes, resizable=0, status=0,left=0, top=0,HEIGHT=100,WIDTH=300"); 				
}

function subs()
{
	if($F('subscribe')=='')return;
	var url="./?mod=subscribe&mail="+$F('subscribe');
	
	//var txt=documentGetElementById('subscribe')
	//alert(url);
	popup(url);
}

