// JavaScript Document
var myWindow;
function popPledge(client, email, date, start) {
		var width = 780;
		var height = 550;
		var left = parseInt((screen.availWidth/2) - (width/2));
		var top = parseInt((screen.availHeight/2) - (height/2));
		var windowFeatures = "width=" + width + ",height=" + height + ",status,scrollbars=no,resizable,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;
		myWindow = window.open("http://www.impacservicesmedia.com/pledge_flash.cfm?client=" + client + "&email=" + email + "&date=" + date + "&start=" + start, "subWind", windowFeatures);
}

var myWindow2;
function popPlans(client, img) {
		var width = 800;
		var height = 600;
		var left = parseInt((screen.availWidth/2) - (width/2));
		var top = parseInt((screen.availHeight/2) - (height/2));
		var windowFeatures = "width=" + width + ",height=" + height + ",status,scrollbars,resizable,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;
		myWindow2 = window.open("http://www.impacservicesmedia.com/imageView.cfm?client=" + client +  "&img=" + img, "subWind", windowFeatures);
}