/*
Shows the missing people
*/

function mailurl(url)
{
	newwindow=window.open(url,'name','height=340,width=400,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

/*
Password popup window
*/

function password(filename,windowname,properties) {
    password = window.open(filename,windowname,properties);
}

