function popper(url,windowname,text,h,w)
{
	if ( h == '' || h == 'undefined' || isNaN(parseInt(h)) ) { h = '10'; }
	if ( w == '' || w == 'undefined' || isNaN(parseInt(w)) ) { w = '10'; }
	if ( !text ) { text = ''; }
	if ( !windowname ) { windowname = 'popper'; }
	features = "height=" + h + ",width=" + w + ",scrollbars=yes,resize=no,status=no,toolbar=no,menubar=no";
	winName = window.open(url + '&referrer=' + document.location.href.replace("#",'') + '&text=' + text,windowname,features);
	if ( !winName )
	{
		alert("You may have a Pop-Up Window Blocker installed that is preventing you from seeing this content. Please disable it and try again.");
	}
}