function WINcreate_open_win( URL, TARGET ,WIDTH, HEI, MENUBAR, TOOLBAR,LOCATION, SCROLLBARS, STATUS, RESIZABLE)
{
	wf=window.open(  URL , TARGET ,'width= '+WIDTH+' , height='+ HEI +' ,menubar=' + MENUBAR + ',toolbar=' + TOOLBAR + ',location=' + LOCATION + ',scrollbars=' + SCROLLBARS + ', status=' + STATUS + ',resizable= ' +RESIZABLE+ '');
wf.focus();
}



