﻿// corners
$(document).ready(function() {
	// Help Popup 
	$('a[@rel=popup]').click(function() {
		var href = $(this).attr('href');
		var pop = window.open(href, 'popup', 'location=0,status=0,scrollbars=1,resize=0,width=535,height=600');
		pop.focus();
		return false;
	});
	
	// Certificate Popup - move to own file
	$('a[@rel=popup-cert]').click(function() {
		var href = $(this).attr('href');
		var pop = window.open(href, 'popup', 'location=0,status=1,scrollbars=1,resize=1,width=700,height=850');
		pop.focus();
		return false;
	});
	

});