// JavaScript Document

function popSites(evtID) {
	var evtwindow = window.open('' + evtID, 'text', 'width=500,height=500,scrollbars=1,resizable=1');
	evtwindow.focus();
}

function popContact(evtID) {
 var evtwindow = window.open('' + evtID, 'text', 'width=500,height=350');
 evtwindow.focus();
}