// JavaScript Document
// -------------
// choose the appropriate stylesheet according to
// the user's screen resolution

//if (screen.width < 1024) {
//document.write('<link rel="stylesheet" type="text/css" href="/stylesheets/narrow_res_stylesheet.css">');
//}
//else {
//document.write('<link rel="stylesheet" type="text/css" href="/stylesheets/wide_res_stylesheet.css">'); 
//}


// Finds the relative path to the secure contact forms
// across the different server environments

function goToContactForm(strPath)
{
	window.location = "https://" + window.location.hostname + strPath;	
}

function goToContactFormBlank(strPath)
{
	window.open ("https://" + window.location.hostname + strPath);	
}

function goFromContactForm(strPath)
{
	window.location = "http://" + window.location.hostname + strPath;	
}

function goFromContactFormBlank(strPath)
{
	window.open ("http://" + window.location.hostname + strPath);	
}