 
	
	function OpenLink(url,h,w)	
	{
		window.location.replace(url);
	}

	function OpenWin(url,h,w,name)	
	{
	   var newWin = ''; 
	   
	   if (newWin.location && !newWin.closed)
	   {
			newWin.location.href = url;
	   }		
	   else
	   {
		   if (h && h > 0)
	           height=h;
	       else
	           height=screen.height-76;
	
	       if (w && w > 0)
	           width=w;
	       else
	           width=screen.width-10;
	
			var  winOpts='width='+width+',height='+height+',toolbar=0,location=0,directories=0,'+'status=1,menubar=0,scrollbars=1,'+'resizable=1,left=0,top=0' ;
			newWin = window.open(url,name,winOpts);	
			if (!newWin.opener) 
				newWin.opener=self;
		}
		if (window.focus)
		{
			newWin.focus();
		}
	}
	
	function OpenInterLink(url)
	{
		var newWin = '';
		var width = '';
		var height = '';
		
		width=screen.width-10;
		height=screen.height-76;
		
		var winOpts='width='+width+',height='+height+',toolbar=0,location=0,directories=0,'+'status=1,menubar=0,scrollbars=1,'+'resizable=1,left=0,top=0' ;
		newWin = window.open(url,'',winOpts);
	}
	