// JavaScript Document

var newwindow;
function openWindow(url)
{
	newwindow=window.open(url,'name','height=400,width=600, scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
