// JavaScript Document

$(function() {

var popup = $('.popup');
popup.click(function(event){
	if(this == event.target)
		{
			var page_link = $(this).attr('href');
			window.open(page_link, '', 'width=1050,height=700,resizable=yes,scrollbars=yes');
			return false;
		}
	});
	
var popup_video = $('.popup_video');
popup_video.click(function(event){
	if(this == event.target)
		{
			var page_link = $(this).attr('href');
			window.open(page_link, '', 'width=1000,height=900,resizable=yes,scrollbars=yes');
			return false;
		}
	});	
	
//$('.box_border').hide();
//$('.dashboard_box').css('height', '20px');
	
	
});

function confirmSubmit() {
	var sendForm = confirm("Are you sure you want to do this?")
	if(sendForm == true)
		return true;
		return false;
	}
	

