/*start pop up profile*/

var newwindow;

function poptastic(url)

{

	newwindow=window.open(url,'name','height=500,width=420,scrollbars=yes');

	if (window.focus) {newwindow.focus()}

}

