/*
	functions.js	-	general purpose js functions
*/

function openPopWin(strFile, strName, intWidth, intHeight)
{
    var strProperties = 'toolbar=no,width=' + Math.round(intWidth) + ',height=' + Math.round(intHeight) + ',left=200,top=50,' + 'status=no,scrollbars=yes,resizable=no,menubar=no';
    tmpWin = window.open(strFile, strName, strProperties);
    tmpWin.focus();
}
