// JavaScript Document
function showProfile(url)
{
	var myNewWindow = window.open(url,'profile','menubar=yes, scrollbars=yes, status=yes, resizable=yes, width=350, height=400, location=no, titlebar=no')
	myNewWindow.moveTo((screen.availWidth-document.body.clientWidth)/2,(screen.availHeight-document.body.clientHeight)/2);
}