function popupPrint(path)
{
	objWindow = window.open(path,'t', "scrollbars=yes,width=640,height=440,resizable=no,left=50,top=50");
	objWindow.focus();
}

function popupMail(path)
{
	objWindow = window.open(path,'m', "scrollbars=no,width=520,height=440,resizable=no,left=50,top=50");
	objWindow.focus();
}

function popupImgZoom(path,width,height,foo)
{
	objWindow = window.open(path, 'i', "scrollbars=no,width=" + width + ",height=" + height + ",resizable=no,left=50,top=50");
	objWindow.focus();
}

function liveticker(path,width,height)
{
	objWindow = window.open(path, 'l', "scrollbars=1,width=" + width + ",height=" + height + ",resizable=no,left=50,top=50");
	objWindow.focus();
}
