//var defStat = "Automated Card Systems ... your single source for plastic cards";
var defStat = "Automated Card Systems";
var lastObj = "";

statStr = new Array();
statStr[0] = "Click to enter site ...";
statStr[1] = "Company ...";
statStr[2] = "Identification Solutions ...";
statStr[3] = "Products ...";
statStr[4] = "Card Printing Services ...";
statStr[5] = "Plastic Cards ...";
statStr[6] = "Supplies ...";
statStr[7] = "On-site Service ...";
statStr[8] = "Customer List ...";
statStr[9] = "News ...";
statStr[10] = "Contact Us ...";
statStr[11] = "Site Index ...";
statStr[12] = "Healthcare ...";
statStr[13] = "Education K-12 ...";
statStr[14] = "College & Universities ...";
statStr[15] = "Chip Technology ...";
statStr[16] = "Supplies ...";
statStr[17] = "Food Service Programs ...";
statStr[18] = "Photo ID Systems ...";
statStr[19] = "Web-Based Solutions ...";
statStr[20] = "Cashless Solutions ...";
statStr[21] = "Wireless Connectivity ...";
statStr[22] = "Information Management ...";
statStr[23] = "Mobile Computing ...";
statStr[24] = "Wireless Connectivity ...";
statStr[25] = "Multi-Factor Authentication ...";
statStr[26] = "Photo ID ...";
statStr[27] = "Web-based Solutions ...";
statStr[28] = "Embossing ...";
statStr[29] = "Patient Registration ...";
statStr[30] = "Labels ...";
statStr[31] = "Color Printers ...";
statStr[32] = "Monochrome Printers ...";
statStr[33] = "Embossers ...";
statStr[34] = "High Speed Printers ...";
statStr[35] = "Software ...";
statStr[36] = "Wireless Connectivity ...";
statStr[37] = "Imprinters ...";
statStr[38] = "Cameras ...";
statStr[39] = "Add news ...";
statStr[40] = "Edit news ...";
statStr[41] = "Delete news ...";
statStr[42] = "Add newsletter ...";
statStr[43] = "Edit newsletter ...";
statStr[44] = "Delete newsletter ...";
statStr[45] = "Add event ...";
statStr[46] = "Edit event ...";
statStr[47] = "Delete event ...";
statStr[48] = "Add article ...";
statStr[49] = "Edit article ...";
statStr[50] = "Delete article ...";
statStr[51] = "Logout ...";
statStr[52] = "Company News ...";
statStr[53] = "Newsletters ...";
statStr[54] = "Shows & Conferences ...";
statStr[55] = "Articles & Whitepapers ...";
statStr[56] = " ...";
statStr[100] = "Revenue Cycle Management";
statStr[101] = "Bedside Computing";
statStr[102] = "Wireless Data Transfer";

function addAlert(obj) {
document.cmn[obj].value += "[alert]TEXT[/alert]";
document.cmn[obj].focus();
}

function newPara(pass, obj) {
if (pass == 0) {
document.cmn[obj].value += "¶";
document.cmn[obj].focus();
} else if (pass == 1) {
document.shw[obj].value += "¶";
document.shw[obj].focus();
}}

function newSent(pass, obj) {
if (pass == 0) {
document.cmn[obj].value += "_";
document.cmn[obj].focus();
} else if (pass == 1) {
document.shw[obj].value += "_";
document.shw[obj].focus();
}}

function startUp() {
window.focus();
window.status = defStat;
}

function statOn(pass) {
window.status = "Automated Card Systems";
//sstatStr[pass];
}

function statOff() {
window.status = defStat;
}

function menuOff(){
if (document.all) {
if (lastObj == '') {
} else {
document.all[lastObj].style.display = 'none';
lastObj = '';
}} else if (document.getElementById) {
if (lastObj == '') {
} else {
document.getElementById(lastObj).style.display = 'none';
lastObj = '';
}}}

function menuOn(obj) {
if (document.all) {
if (lastObj == '') {
document.all[obj].style.display = 'block';
lastObj = obj;
} else if (lastObj == obj) {
} else {
document.all[lastObj].style.display = 'none';
document.all[obj].style.display = 'block';
lastObj = obj;
}} else if (document.getElementById) {
if (lastObj == '') {
document.getElementById(obj).style.display = 'block';
lastObj = obj;
} else if (lastObj == obj) {
} else {
document.getElementById(lastObj).style.display = 'none';
document.getElementById(obj).style.display = 'block';
lastObj = obj;
}}}