<!-- 

// Style Sheet

document.write("<STYLE TYPE='text/css'>" +
			   "<!--" +
			   "body, TABLE, TD, TH {font-family:Arial;color:#3A3254;font-size:13px;}" +
			   ".smtab {font-family:Arial;font-size:13px;}" +
			   "a:hover {color:#b78500;}" +
			   "a {color:#3A3254;text-decoration:underline;font-size:13px;}" +
			   "a.index {color:#3A3254;text-decoration:none;font-size:13px;}" +
			   "//-->" +
			   "</STYLE>")


// Status Message - or Not

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}

// Array Function for Header and Footer

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// Header Array

var header = new makeArray("" +
		 "<table border=0 cellpadding=1 cellspacing=1 width=620>" +
    	 "<tr><td colspan=6>" +
    	 "<IMG align=center border=0 src=\"images/top.jpg\" height=115 width=620></TD></TR>" +
		 "</table>")


// Footer Array

var footer = new makeArray("<BR><HR>" +
						   "<center><a href=\"../index.htm\"><img src=\"images/logo_sm.jpg\" border=0></a>" +	
						   "<br><font color=#3A3254 size=2><b>International Graduate School of Ministry</b></font><BR><BR>" +
						   "<a class=index href=\"../index.htm\">Home</a>" +
						   "&nbsp;&nbsp;<img src=\"images/line.gif\" width=1 height=10>&nbsp;&nbsp;" +
						   "<a class=index href=\"aboutus.htm\">About IGSM</a>" +
						   "&nbsp;&nbsp;<img src=\"images/line.gif\" width=1 height=10>&nbsp;&nbsp;" +
						   "<a class=index href=\"students.htm\">Student Information</a>" +
						   "&nbsp;&nbsp;<img src=\"images/line.gif\" width=1 height=10>&nbsp;&nbsp;" +
						   "<a class=index href=\"admissions.htm\">Admissions</a>" +
						   "&nbsp;&nbsp;<img src=\"images/line.gif\" width=1 height=10>&nbsp;&nbsp;" +
						   "<a class=index href=\"contact.htm\">Contact Us</a>" +
						   "<p><font size=1 color=#3A3254>Copyright &#169; 2001 International Graduate School of Ministry</font></p>" +
						   "<P><font size=1 color=#3A3254>Site Design by: <a class=index href=\"http://epicwebdesignsolutions.com\"><font size=1>Epic Web Design</font></a></font></center>")

// -->

