// functions--
// #01
// powered by NUKS_end
//-----------------------------------



//openwin

var w=window;
function openWin(url)
{
if((w==window)||w.closed)
	{
	w=open(url,"_blank","width=800,height=600,toolbar=yes,scrollbars=no,resizable=yes");
	}else{
	w.focus();
	}
return(false);
}
