function openWindow(theURL,winName,features) {
	newWin = window.open(theURL,winName,features);
	setTimeout('newWin.focus();',250);
}
function shareFriend() {
	newWin = window.open('/sharepage.php?pn=' + document.title + '&pl=' + document.location,'share','scrollbars=no,width=460,height=285');
	setTimeout('newWin.focus();',250);
}
