function profile_flash(js_url, flash_var, type,  width, height) {

if (typeof type == 'undefined')
{
	type = "profile";
}
if (typeof width == 'undefined')
{
	width = 290;
}
if (typeof height == 'undefined')
{
	height = 510;
}

var flash = '<embed src="' + js_url + 'flash/' + type + '.swf" width="' + width + '" height="' + height + '" FlashVars="' + flash_var + '"></embed>';
document.write(flash);

}
