<!--
/* Function that handles new window display */
function newWindow(URL,winwidth,winheight) {
	if (winwidth=='' || winwidth == null) {
		winwidth=650;
	}
	if (winheight == '' || winheight == null) {
		winheight =450;
	}
        strFeatures = "resizable=yes,toolbar=0,scrollbars=1,location=0,status=0,menubar=1,width="+winwidth+",height="+winheight+",left=20,top=30,dependent,alwaysRaised";
		
        var objNewWindow = window.open(URL, "newwin", strFeatures);
        objNewWindow.focus();
        returnValue = false;
}
function isInValid(string, text) {
    var i = string.indexOf(text);

    if (i == -1) {
        return false;
    }
    else {
	return true;	
    }
}

//-->
