
/** 
* this passed from flash when an external link is called<br/>
* put any tracking or additional parameters in here
* @param link:String the url of the link
* @param target:String the window you wan it to open in, I.e. _blank
*/

function openLink(link,target){
	
	switch(target){
		
		//new window
		case "_blank":
			
			
			
		break;
		
		//same window
		default:
			
			
			
		break;
	
	}
	
	

}

//