function openWindow(link, windowName, width, height)
{
var newWindow = window.open(link, windowName, "resizable=1, scrollbars=1, width="+width+",height="+height);
newWindow.moveTo(0,0);
}