function externalFlashWriter (flashBannerSource){
	document.write(flashBannerSource);
}
function externalFlashWriter2 (flashBannerSource){
	document.write(flashBannerSource);
}

function newwindow(href, params)
{
	window.open(href, "_blank", params);
	return false;
}

function selfwindow(href)
{
	window.open(href, "_self");
	return false;
}

function selfwindowconfirm(href, confirmstr)
{
	if(window.confirm(confirmstr))
		window.open(href, "_self");
	return false;
}

