
function contactus (from, session, id) {
	return contactuspopup (from, session, id);
}

function contactuspopup (from, session, id) {
	var url = 'contactus.cgi?from=' + from;
	if (from == 'tcontactus' || from == 'Starwood Demo' || from == 'Starwood Info') {
		url = '../' + url;
	}
	if (session) {
		url = url + '&session_file=' + session;
	}
	if (id) {
		url = url + '&id=' + id;
	}
 var newwin=window.open(url, 'contactus', 'width=500, height=400, scrollbars=no, resizable=yes');
	if (newwin) {
		newwin.focus();
		return false;
	} else {
		alert('Pop-up window not created.  Please set your Pop-up blocker to allow Pop-ups from the WineQuest website to get full WineQuest functionality.');
		return true;
	}
}

