function bannerShow(x, y, file, path){
	var result = '';
	result += '<object width="'+x+'" height="'+y+'">';
	result += '<param name="movie" value="'+path+'/file/open/'+file+'">';
	result += '<param name="wmode" value="transparent" />';
	result += '<embed src="'+path+'/file/open/'+file+'" width="'+x+'" height="'+y+'" wmode="transparent"></embed>';
	result += '</object>';
	document.write(result);
}

$(function(){
	$('a[rel=_blank]').bind('click', function(e){
		e.preventDefault();
		window.open(this.href);
	});
});
