defaultStatus="Arctic Slope Regional Corporation"

function stat(str){
	 window.status=str;
	}
	
/* Socket: Needed for Rss Feeds */
function sendToAFriend()
{
	var subj ="Jobs at ASRC ";
	var msg = "Hi, I thought you might be interested in the Jobs at ASRC website: "+ window.location;
	window.location = "mailto:?subject="+ subj +"&body="+ msg;
}
function tellAFriend(jobTitle, company)
{
	var subj ="Jobs at ASRC: "+ jobTitle;
	var lnk = location.href ;
	var msg = "Hi, I thought you might be interested in this "+jobTitle +" position: "+ lnk;
	window.location = "mailto:?subject="+ subj +"&body="+ msg;
}
/* End Rss Feeds */	

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		arrow_over = newImage("images/arrow-over.gif");
		preloadFlag = true;
	}
}
// Temporarily hard coded
	function getMap(){
		window.open('../_flash/map.html','mapWin','height=400,width=650,left=50,top=75')
	}
	
// Temporarily hard coded
	function getImg(theImg,hght,wdth){
		var theHtml = '<html><title>ASRC</title>' +
		'<head></head>' +
		'<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>' +
		'<table width=100% height=100% border=0>' +
		'<tr><td><img src=../images/'+ theImg +' border=0 hspace=0 vspace=0></td></tr>' +
		'</table>' +
		'</html>'
		
		
		
		window.open(theHtml,'mapWin','height="+ hght +",width='+ wdth +',left=50,top=75')
	}