function win(href,win_name,win_width,win_height,win_scrollbars,win_toolbar,win_location,win_status,win_resizable){
	if(href == null){ return false; }
	if(win_name == null){ var win_name="sinx"; }
	if(win_width == null){ var win_width=400; }
	if(win_height == null){ var win_height=400; }
	if(win_scrollbars == null){ var win_scrollbars=0; }
	if(win_toolbar == null){ var win_toolbar=0; }
	if(win_location== null){ var win_location=0; }
	if(win_status == null){ var win_status=0; }
	if(win_resizable == null){ var win_resizable=1; }
	window.open(href,win_name,'width='+win_width+',height='+win_height+',scrollbars='+win_scrollbars+',toolbar='+win_toolbar+',location='+win_location+',status='+win_status+',resizable='+win_resizable);
}
