﻿function confirm_delete() {
	if (confirm("Are you sure you want this to be DELETED?") == true) {
        return (true);
	} else {
		return (false);
	}
}

function checkLength(areaObject,maxLength) {
    if (areaObject.value.length>maxLength) {
        areaObject.value=areaObject.value.substr(0,maxLength);
    }
}

function PopUp(url,width,height) {
	myPopUp = window.open(url,"PSST","location=no,toolbar=no,status=no,titlebar=no,menubar=no,width=" + width + ",height=" + height + ",scrollbars=yes");
	myPopUp.focus();
}

function ViewDashboard(ps_id) {
	myPopUp = window.open("../Report/ViewDashboard.aspx?ps_id=" + ps_id,"PSST","location=no,toolbar=no,status=no,titlebar=no,menubar=no,width=470,height=200,scrollbars=no");
	myPopUp.focus();
}

function HideShow(id) {
    myelement = document.getElementById(id);
    if (myelement.style.display == "")
    {
        myelement.style.display = "none";
    }
    else
    {
        myelement.style.display = "";
    }
}