//'********************************************************************
//'	Copyright (c) 1998-2004 Web Alchemy
//'********************************************************************
//'	/scripts/contact.js
//'********************************************************************
//'	see "/share_common/javascript/popups/contact.js"
//'********************************************************************

function	OpenDomainContactCenter
			(
				domain_id, width, height,
				toolbar, location, directories,
				status, menubar, scrollbars, resizable
			)
{
	var url = '/contact/e-mail.asp?did='+domain_id;
	//var url = '/popups/contact.asp?did='+domain_id;
	var str;
	str =       ('left=4,top=4');
	str = str + (',width=' + width);
	str = str + (',height=' + height);
	str = str + (',toolbar=' + toolbar);
	str = str + (',location=' + location);
	str = str + (',directories=' + directories);
	str = str + (',status=' + status);
	str = str + (',menubar=' + menubar);
	str = str + (',scrollbars=' + scrollbars);
	str = str + (',resizable=' + resizable);
	var window_name = "contact_center"
	var contact_center = window.open(url, window_name, str)
	contact_center = window.open("", window_name, "")
	contact_center.focus();
}
