// v1.0
function openwindow(url)
{
	window.open(url, 'interstitial', 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=490,height=400');
}

function openprintable(url)
{
	window.open(url, '_blank', 'scrollbars=yes,resizable=yes,width=800,height=600');
}

// v2.0
function MM_openBrWindow_(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function openDisclaimer(url) {
	MM_openBrWindow_( applicationRoot + '/LeavingNotice.aspx?url=' + url,'winDisclaimer','width=450,height=340');
}



