



function popup(url, stagename, width, height)	{
	var options = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,top=300,left=300,width=" + width + ",height=" + height;
	var myWindow = window.open(url, stagename, options);
	myWindow.focus();
}

function scrollpopup(url, stagename, width, height)	{
	var options = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,top=300,left=300,width=" + width + ",height=" + height;
	var myWindow = window.open(url, stagename, options);
	myWindow.focus();
}



/////////////////////////////////////////////////////////////////
// email_obfuscator.js
//
// by Nathan Rosenqist
// 10/25/2002
//
// uses JavaScript to write e-mail addresses
// so SPAM robots won't pick them up
//
// example:
// <script>showEmailLink('com','mydomain','myname');</script>
// (displays myname@mydomain.com in HTML)
/////////////////////////////////////////////////////////////////

// accepts top level domain, domain, username
// returns constructed e-mail address
// 
function getEmail(tld, domain, name) {
    return (name + '@' + domain + '.' + tld);
}

// accepts top level domain, domain, username
// prints out constructed e-mail address
// 
function showEmail(tld, domain, name)    {
    document.write(getEmail(tld,domain,name));
}

// accepts top level domain, domain, username, [display name], [query string]
// prints out constructed e-mail address as an HTML link
// 
function showEmailLink(tld, domain, name, displayName, queryString)  {
    if (!displayName)   {
		displayName = getEmail(tld,domain,name);
    }
	
    if (queryString)    {
		document.write('<a href="mailto:' + getEmail(tld,domain,name) + '?' + queryString + '">' + displayName + '</a>');
    } else  {
		document.write('<a href="mailto:' + getEmail(tld,domain,name) + '">' + displayName + '</a>');
    }
};



// ----- For CSS pop up ------ //


$(document).ready(function(){

	
	$('a.poplight[href^=#]').click(function() {
		var popID = $(this).attr('rel'); //Get Popup Name
		var popURL = $(this).attr('href'); //Get Popup href to define size
				
		//Pull Query & Variables from href URL
		var query= popURL.split('?');
		var dim= query[1].split('&');
		var popWidth = dim[0].split('=')[1]; //Gets the first query string value

		//Fade in the Popup and add close button
		$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="close_pop.png" class="btn_close" title="Close Window" alt="Close" /></a>');
		
		//Define margin for center alignment (vertical + horizontal) - we add 80 to the height/width to accomodate for the padding + border width defined in the css
		var popMargTop = ($('#' + popID).height() + 80) / 2;
		var popMargLeft = ($('#' + popID).width() + 80) / 2;
		
		//Apply Margin to Popup
		$('#' + popID).css({ 
			'margin-top' : -popMargTop,
			'margin-left' : -popMargLeft
		});
		
		//Fade in Background
		$('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
		$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer 
		
		return false;
	});
	
	
	//Close Popups and Fade Layer
	$('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
	  	$('#fade , .popup_block').fadeOut(function() {
			$('#fade, a.close').remove();  
	}); //fade them both out
		
		return false;
	});

	
});

