// open new window on top left corner
function openWindow(url,width,height) {
    
    if(!width) width = "490";
    if(!height) height = "550";
    
	popupWin = window.open(url, 'table','menubar=false,scrollbars,resizable,width='+width+',height='+height+',screenX=0,screenY=0,top=0,left=0');
    window.name = 'opener';
    if(window.focus)
    {
    	popupWin.focus();	
	}
}

//function openWindow(url,width,height) {
//	popupWin = window.open(url, 'table','menubar=false,scrollbars,resizable,width=490,height=550,screenX=0,screenY=0,top=0,left=0');
//    window.name = 'opener';
//    if(window.focus)
//    {
//    	popupWin.focus();	
//	}
//}

function transferParentWindow(url)
{
	 opener.window.location.href = url;
	 self.close();
}
