//    //--// rf's popup onclick script //--//    //

// use the following code for links (specifically the "onclick...return false;" portion)
// <a href="" onclick="openWindow(this.href, 600);return false;"></a>
//
// keep the "this.href" as is, but
// you can specify a width for the new window as the second argument, 
// otherwise it will default to the value of newWinWidth on the second line

function openWindow(theURI, newWinWidth){
	if (!newWinWidth) {newWinWidth=800}
	window.open(theURI, "publication", 'location=0, status=0, toolbar=0, scrollbars=1, width=800')
	}

