
function getMenu(){
	
	
	return	"";
}


function getFooter(){
	return "<BR clear='all'><BR><HR><DIV class='Footer'>Copyright 2009, International Compliance Systems, Inc.</DIV><BR></DIV>";
}

function getIcsHeader(){
	
	return	"<TABLE align='center' width='580px'>" + 
			"<TR valign='top'><TD align='left'><IMG src='/images/ics_logo.gif'></TD>" + 
			"<TD align='right'>" +  
			"Pleasant Street (Box 8929)<BR>" + 
			"New Bedford, MA 02742<BR>" + 
			"Phone: 1.508.995.3082<BR>" + 
			"Fax: 1.508.995.4167<BR>" + 
			"</TD></TR></TABLE>";
}

function getFileName(){
	var filename = window.location + "";	
	filename = filename.substring(filename.lastIndexOf("/") + 1, filename.length);
	filename = filename.substring(0, filename.indexOf("."));
	return filename;
}

function getTitle(){
	var filename = getFileName();
	
	switch(filename){
		case 'aboutics':				return 'About International Compliance Systems, Inc.';
		case 'careers' :				return 'Careers';
		case 'contract':				return 'Contract Vehicles';		
		case 'javaengineer' :				return 'Careers - Java Software Engineer';
		case 'oracleengineer' :				return 'Careers - Oracle Database Developer';
		case 'crms':					return 'Compliance RMS';
		case 'customerservice':				return 'Customer Service';
		case 'southcoast':				return 'Our Southcoast';
		case 'product_enhancements':			return 'SGA2000 version 2.1 Product Enhancements';
		case 'products':				return 'Compliance Products and Services';
		case 'rta':					return 'Real-Time Accountability';
		case 'sga2000':					return 'Self-Guided Assessment 2000';
		case 'spotlights':				return 'Spotlights';
		case 'thankyou':				return 'Thank You';
		case 'un2000':					return 'United Nations Millennium Declaration';
		case 'investors':				return 'Investor Relations';
		default: return 'DynamicCompliance.com';
	}
}


function getBrowserTitle(){
	return "<TITLE>" + getTitle() + "</TITLE>";
}

function getRightImage(){
	var title = getTitle();
	var filename = title == 'DynamicCompliance.com' ? 'index' : getFileName();
	return "<TD rowspan='2' class='Right' style=\"background-image: url('/images/" + filename + ".gif');\">&nbsp;</TD>";
}
