var mobj_PostToUrl_old;


//Implicit Override with code
function apc_override(){

	try{
		if(PostToUrl != null){
			mobj_PostToUrl_old = PostToUrl;
			PostToUrl = apc_PostToUrl;
		}

	}catch(err){
	
	}
}

function apc_PostToUrl(url){
	if(url == null || url.length <=0){
		return;
	}
	
	document.location.href = url;

}


//Explicit override.  this fixes the activex name.dll install dialog that appears for windows vista.
function ProcessImn(){}
function ProcessImnMarkers(){}
//---------------------------------------------------------

apc_override();
