// popupWindowOpen.js

$(document).ready(function() {

	$('a.terms').click(function() {
		window.open('terms.html', 'terms', 'width=385, height=475, resizeable=0, scrollbars=1');
		return false;
	});

	$('a.contact').click(function() {
		window.open('contact.asp', 'contact', 'width=375, height=540, resizeable=0, scrollbars=1');
		return false;
	});

	$('a.privacy').click(function() {
		window.open('privacy.html', 'privacy', 'width=375, height=485, resizeable=0, scrollbars=1');
		return false;
	});

	$('a.termsclose').click(function() {
		window.close($(this));
	});

	$('a.contactclose').click(function() {
		window.close($(this));
	});

	$('a.privacyclose').click(function() {
		window.close($(this));
	});

	$('#promotion a').click(function(){
        window.open(this.href);
        return false;
    });

	$('#oldsite a').click(function(){
        window.open(this.href);
        return false;
    });

});