function OpenPopUp(url)
{	
	var newwindow;
	newwindow = window.open(url, 'name', 'height=800, width=400, resizable=1, scrollbars=1');
	if (window.focus)
		{
			newwindow.focus();
		}
}