
function getIMG(path, type , lang){

var src = new Array;

var strPicturePath = 'main_eng.swf';



		switch(type)
		{
		case '':	
			if (lang == 'english'){
				strPicturePath = 'main_eng.swf';
			}
			else if( lang == 'simplified_chinese'){
				strPicturePath = 'main_schi.swf';
			}
			else if( lang == 'traditional_chinese'){
				strPicturePath = 'main_tchi.swf';
			}		
			break;
		case '29':
		case '30':		
		case '31':		
		case '32':				
		case '33':						
		case '34':								
		case '35':										
		case '39':
		case '45':		
			if (lang == 'english'){
				strPicturePath = 'profile_eng.swf';
			}
			else if( lang == 'simplified_chinese'){
				strPicturePath = 'profile_schi.swf';
			}
			else if( lang == 'traditional_chinese'){
				strPicturePath = 'profile_tchi.swf';
			}
			
		  	break   
		case '37':		
			if (lang == 'english'){
				strPicturePath = 'cntaact_eng.swf';
			}
			else if( lang == 'simplified_chinese'){
				strPicturePath = 'cntaact_schi.swf';
			}
			else if( lang == 'traditional_chinese'){
				strPicturePath = 'cntaact_tchi.swf';
			}
			
		  	break 			
		case '41':
		case '42':
		case '43':		
		case '44':				
		case '46':				
			if (lang == 'english'){
				strPicturePath = 'relation_eng.swf';
			}
			else if( lang == 'simplified_chinese'){
				strPicturePath = 'relation_schi.swf';
			}
			else if( lang == 'traditional_chinese'){
				strPicturePath = 'relation_tchi.swf';
			}
			break	
		case '36':
			if (lang == 'english'){
				strPicturePath = 'business_eng.swf';
			}
			else if( lang == 'simplified_chinese'){
				strPicturePath = 'business_schi.swf';
			}
			else if( lang == 'traditional_chinese'){
				strPicturePath = 'business_tchi.swf';
			}
			break				
		}
		
		
		if ( type != ''){
			document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="800" height="221" title="title">');
			document.write('<param name="movie" value="templates/joe_testing/swf/' + strPicturePath   + '" /> ');			
			document.write('  <param name="quality" value="high" />');			
			document.write('<embed src="templates/joe_testing/swf/' + strPicturePath + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="221"></embed>');						
			document.write('</object>');						
		}
		else{
			document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="800" height="221" title="title">');
			document.write('<param name="movie" value="templates/joe_testing/swf/' + strPicturePath  + '" /> ');			
			document.write('  <param name="quality" value="high" />');			
			document.write('<embed src="templates/joe_testing/swf/' + strPicturePath + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="221"></embed>');						
			document.write('</object>');						
			}
			
		

}

