function popUp( location, w, h , scrollbars, resizable, screenX, screenY, menubar) 
{
	popDlg(location,'editWin', w, h , scrollbars, resizable, screenX, screenY, menubar);
}
function popDlg( location, name, w, h , scrollbars, resizable, screenX, screenY, menubar) 
{
	if( w == null ) { w = 300; }
	if( h == null ) { h = 200; }
	if(screenX == null) screenX = "10";
	if(screenY == null) screenY = "10";
	if( menubar == null) menubar = "0";
	if(scrollbars == null) scrollbars="0";
	if(resizable == null) resizable="0";	

var toolbar = "menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",width="+w+",height="+h+",center=true";
	var editorWin = window.open(location,name, toolbar);
	editorWin.focus(); 
}

function voiD(){;}

