var newwindow;
function open_window(url, title)
{
	newwindow=window.open(url,'name','height=640,width=884, location=no, resizable=1, status=no, scrollbars=1');
	if (window.focus) {newwindow.focus()}
}
