﻿// JScript File
function popitup(url,nm) {
	newwindow=window.open(url,nm,'height=200,width=150');
	if (window.focus) {newwindow.focus()}
	return false;
}

function textboxMultilineMaxNumber(txt,maxLen){
        try{
            if(txt.value.length > (maxLen-1))return false;
           }catch(e){
        }
    }
