function navReferral(aureusID)
{
	window.open('/referral.aspx?rflID=' + aureusID,'','width=400,height=500,toolbar=0,addressbar=0',true);
}

function navProfile()
{
	window.open('/aureus/profile.asp?pup=1','','width=700,height=600,toolbar=0,addressbar=0,scrollbars=1',true);
}

function navGenericURL(passedURL)
{
	window.open(passedURL,'','width=600,height=500,toolbar=0,addressbar=0,scrollbars=1',true);			
}

function navGenericURL_Size(passedURL, iW, iH)
{
	window.open(passedURL,'','width=' + iW + ',height=' + iH + ',toolbar=0,addressbar=0,scrollbars=1',true);			
}

