

function showForumPopup( url, w, h, offsetX, offsetY, rsze, scr ){
	var winLeft = (screen.width / 2) - (w/2);
	var winTop = (screen.height / 2) - (h/2);
	winLeft += offsetX;winTop += offsetY;
	var newWin;newWin = "";
	if(!newWin  || newWin.closed){
		newWin = eval('window.open(url,"newWin","resizable='+rsze+',scrollbars='+scr+',status=no,left='+winLeft+',top='+winTop+',Width='+w+'px,Height='+h+'px")');
		newWin.focus();
		newWin.resizeTo(w,h);
		newWin.moveTo(winLeft,winTop);
	}	
}

//-- general

function showMemberProfile(id){alert("Member Profiles coming soon...");}
function MailaFriend(id){showForumPopup( '/forum/mail_a_friend.asp?messid='+id, 420, 420, 0, 0,0,0 );}
/*
function searchTips(){showForumPopup( '/search/searchTips.asp', 420, 420, 0, 0,0,1 );}
function cookieInfo(){showForumPopup( '/login/cookies.asp', 480, 550, 0, 0,0,1 );}
function requestDetails(){showForumPopup( '/login/request_my_details.asp', 470, 450, -20, -20,0,0 );}
*/