// JavaScript Document
function popthis(destUrl) { 
	popup_win = window.open(destUrl, "popthis", 'toolbar=1,location=1,directories=1,scrollbars=1,status=1,menubar=1,resizable=1,width=850,height=520');
	popup_win.focus();
}
// add event handler to link:  onclick="popthis(this.href);return false;"


function openOut(earl,resyze,wydth,hyght) {
	outWin = window.open(earl,"sites","toolbar=1,location=1,directories=1,menubar=1,scrollbars=1,status=1,resizable=" + resyze + ",width=" + wydth + ",height=" + hyght);
	outWin.focus();
}
// add event handler: onclick="openOut((this.href),'yes','850','520');return false;"

