function win_open(filename,w_name,width,height,status,scroll,mnbar) {

	if(!status) status='no';
	if(!scroll) scroll='no';
	if(!mnbar) mnbar='no';

	if(!width || !height) { alert('XY is Null.... Error...'); return; }
	//alert('filename='+filename+' w_name='+w_name+' width='+width+' height='+height+' status='+status+' scroll='+scroll+' mnbar='+mnbar);

	window.open(filename,w_name,'width='+width+',height='+height+',history=yes,resizable=no,status='+status+',scrollbars='+scroll+',menubar='+mnbar); 
}
