var newwindow;
function openWindow(url)
{
	newwindow=window.open(url,'name','height=500,width=400');
	if (window.focus) {newwindow.focus()}
}
