function openFull(sURL){
	window.opener.changeHref(window, sURL);
}
function changeHref(oChildWindow, sNewLocation){
	oChildWindow.close();
	document.location.href = sNewLocation;
}
function openwin(url,x,y)
{
  win=window.open(url, "note", "toolbar=0,status=0,location=0,directories=0,menubar=0,resizable=yes,scrollbars=1,maximize=no,width=" + x + ",height=" + y);
}