<!--

function runRedirect(redirectValue)
{

window.location=redirectValue;

}

function runRedirectwithAlert(alertMessage,redirectValue)
{

alert(alertMessage);
runRedirect(redirectValue);
}

//-->