function popupWin(filename, pWidth, pHeight, addSettings) {
	if (pWidth == null) var width = 600;
	if (pHeight == null) var height = 450;
	if (addSettings == null) var addSettings = "";
	
	
	// Setup Settings
	var settings = "fullscreen=0,toolbar=0,status=0,menubar=0,scrollbars=0,resizable=1,directories=0,location=1";
	settings += ",width="+pWidth;
	settings += ",height="+pHeight;
	settings += addSettings;
	
	// Center the window on the screen
	var winLeft = (screen.width-pWidth)/2;
	var winTop = (screen.height-pHeight)/2;
	if (winLeft >= 0) settings += ",left=" + winLeft;
	if (winTop >=0 ) settings += ",top=" + winTop;
	
	var win = window.open(filename,"SCBC_Popup",settings);
	
	// Place window focus on the popup (This places the carrot in the form)
	win.window.focus();
}

function contact(ContactAlias) {
	var width = 368;
	var height = 287;
	
	// Setup Settings
	var settings = "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=yes,directories=no,location=no";
	settings += ",width="+width;
	settings += ",height="+height;
	
	// Center the window on the screen
	var winLeft = (screen.width-width)/2;
	var winTop = (screen.height-height)/2;
	if (winLeft >= 0) settings += ",left=" + winLeft;
	if (winTop >=0 ) settings += ",top=" + winTop;
	
	var win = window.open("/Scripts/Contact.php?name="+ContactAlias,"SCBC_ContactPopup",settings);
	
	// Place window focus on the popup (This places the carrot in the form)
	win.window.focus();
}