﻿// 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=1,width=520,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;
	});
	
	// Content Popup - move to own file
	$('a[rel=popup-content]').click(function() {
		var href = $(this).attr('href');
		var pop = window.open(href, 'popup', 'location=0,status=1,scrollbars=1,resizable=1,width=800,height=800');
		pop.focus();
		return false;
	});
	
	

});