// JavaScript Document
var flash_ok = false;
function fl_ok(){
	flash_ok = true;
}

var obj = null;
function markSet(str){
	if(flash_ok){
		obj = document.all ? window['flash_map_external'] : document['flash_map_external'];
		try{
		obj.posiSet(str);
		}catch(e){
			alert(e.description);
		}
		
	}
}

function imgbox_view(str){
	$('#'+str).trigger("click");
}

