function load(url) {
	window.open(url,"","scrollbars=yes,menubar=no,height=500,width=600,resizable=yes,toolbar=no,location=no,status=no");
}
var newwindow;
function openwindow(url)
{
	newwindow=window.open(url,'name','height=400,width=200');
	if (window.focus) {newwindow.focus()}
}
