// JavaScript Document
function showNDA()
{
	var height = screen.height/2;
	var width = screen.width/2;
	var target = 'new';
	var titlebar = 'no';
	var status = 'no';
	var	resizable = 'yes';
	var	toolbar = 'no';
	var	scrollbars = 'yes';
	var	menubar = 'no';
	var location = 'no';
	
	var businessname = jQuery('#business-name').val();
	businessname = escape(businessname);
	
	var href = '/content/nda.php?businessname='+businessname;
	var posY = (parseInt(screen.height/2)) - (parseInt(height/2));
	var posX = (parseInt(screen.width/2)) - (parseInt(width/2));
	
	var win = window.open(href, target, 'titlebar=' + titlebar + ', screenX='+ posX +', screenY='+ posY +', left='+ posX +', top='+ posY +', status=' + status + ', resizable=' + resizable + ', toolbar=' + toolbar + ', scrollbars=' + scrollbars + ', menubar=' + menubar + ',location='+ location +', width='+ width +', height='+ height);
	win.focus();
	return false;
}
jQuery(document).ready(function()
{
	jQuery('#agreement-form').click(showNDA);

});
