function profile_popup(profileid, profilename) {

//alert("hello from profilename="+firstname);

	url = 'profile_popup.php?profile='+profileid;

/*	window.open(url, 'profile_win', 'width=650,height=450,left=100,top=100,location=1,status=0,scrollbars=0,menubar=0,resizable=0');
*/
window.open(url, 'profile_win','left=100,top=100,location=1,status=0,scrollbars=1,menubar=1,resizable=1');

}


/*

original function

function profile_popup(profileid, profilename) {

	url = 'profile_popup.php?profile='+profileid+'&name='+profilename;

	window.open(url, 'profile_win', 'width=650,height=450,left=100,top=100,location=0,status=0,scrollbars=0,menubar=0,resizable=0');

}

*/