function popUpWithMenuBar(URL,width,height,scroll) 
{
	day = new Date();
	id = day.getTime();
	pos_x = (1024/2) - (width/2);
	pos_y = (768/2) - (height/2);
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scroll+",location=0,statusbar=0,menubar=1,resizable=0,width="+width+",height="+height+",left = "+pos_x+",top = "+pos_y+"');");
	
}

function popUp(URL,width,height,scroll) 
{
	//alert("test3");
	day = new Date();
	id = day.getTime();
	pos_x = screen.width/4;
	pos_y = screen.height/4;
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scroll+",location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+",left = "+pos_x+",top = "+pos_y+"');");
	
}

function popUpWithInPopUp(URL,width,height,scroll) 
{
	day = new Date();
	id = day.getTime();
	pos_x = screen.width/3;
	pos_y = screen.height/2;
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scroll+",location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+",left = "+pos_x+",top = "+pos_y+"');");
	
}

function popUpWithResize(URL,width,height,scroll) 
{
	day = new Date();
	id = day.getTime();
	pos_x = (1024/2) - (width/2);
	pos_y = (768/2) - (height/2);
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars="+scroll+",location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height="+height+",left = "+pos_x+",top = "+pos_y+"');");
	
}

