// JavaScript Document										
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
	if(!popUpWin.closed) popUpWin.close();
  }
  window.open(URLStr, "newwin", "width=600,height=455,left=220,top=150");
}
										
function goto(url) 
{
	window.location = url + "ret="+document.URL;
}

function browse(v)
{
	window.location =  v;
}