
function newWindow(filename, w,h){  
        popWin = window.open(filename,"popup","height="+h+",width="+w+",scrollbars=yes, resize=yes, leftmargin=0, topmargin=0", "dependent") ; popWin.focus ("popup");
}


function openAddressBook(qstring, addressBookPath)
{
	addressBookWindow = window.open (addressBookPath + qstring, "addressBook","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=600,height=300");
	if (addressBookWindow.opener == null) addressBookWindow.opener = self;
}

