var phoneNumber = "724-235-2115 / 888-234-9983";

//Display a message
function f_Msg(message){
	var obj = document.getElementById("msg");
	obj.style.visibility = "visible";
	if(navigator.appName == "Microsoft Internet Explorer"){
		obj.innerText = message;
	}else{
		obj.childNodes[0].nodeValue = message;
		obj.style.height = "10px";
		obj.style.textAlign = "center";
	}
	
	setTimeout("f_closeMsg()",1500); 
}
function f_closeMsg(){
	document.getElementById("msg").style.visibility = "hidden";
}

//Display disclaimer
function f_disclaimer(){
	alert(disclaimer2);
}

//Open survey window
function f_OpenSurvey(){
	window.open("survey.html","survey","width=550,height=500,menubar=no,scrollbars=yes,toolbar=no");
}

//Random file method
function f_RandomPic(){
	document.ranPic.src = picArray[Math.floor(Math.random()*2)];
}

//Change the background of main top links
function f_Change(element){
	document.getElementById(element).style.backgroundColor = "#FFFFFF"
}
function f_ChangeBack(element){
	document.getElementById(element).style.backgroundColor = "#E5E6AE"
}

function f_OpenPictureWindow(spic,sdesc){
	newwindow2=window.open('','name','height=600,width=700,menubar=no,scrollbars=yes,toolbar=no');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>' + sdesc + '</title>');
	tmp.write('<link rel="stylesheet" href="ml.css">');
	tmp.write('</head><body background="background.jpg">');
	tmp.write('<p align="right"><a href="javascript:window.close();" style="color:black;font-weight:800;">CLOSE</a></p>');	
	tmp.write('<p align="center"><img src="' + spic + '"></p>');	
	tmp.write('</body></html>');
	tmp.close();
}
