function openwin(URL)
{  
	openwin1(URL);
}

function openwin1(URL)
{  
    aWindow=window.open(URL, "thewindow",
    "toolbar=no,width=600,height=700,status=yes,scrollbars=yes,resize=yes,menubar=no");
   //aWindow.moveTo(x,y);
}

function openwin2(URL)
{  
    aWindow=window.open(URL, "thewindow",
    "toolbar=no,width=700,height=400,status=yes,scrollbars=yes,resize=yes,menubar=no");
   //aWindow.moveTo(x,y);
}
