

function windowOpen(url, title, width, height) 
{
	popUpWindow = window.open(url, title, "width="+width+",height="+height);
	popUpWindow.focus();
	return popUpWindow;
}

function windowClose(w) 
{
	w.close();
}
