function pstPwClose(element) {
	$(element).hide();
	$('main').setOpacity(1.0);
}

function pstPwPop(pw, pwnote, link, tracker) {
	yoff=document.viewport.getScrollOffsets()[1]+140;
	yoff = yoff + "px"
	$('main').setOpacity(0.5);
	$('pwContent').update('<p align=center">The password is <b>' + pw + '</b>. ' + pwnote + '<br><br><b><a href="' + link + '" target="_blank" onClick="pstPwClose(\'pstPopup\'); pageTracker._trackPageview(\'' + tracker + '\');	return true;">Get Tickets Now &raquo;</a></b></p>')
	$('pstPopup').setStyle({top: yoff});
	$('pstPopup').show();
}