// JavaScript Document
function miniih_loader(id, flag)  {

if ($(id)) {
	$(id).style.visibility = (flag) ? 'visible' : 'hidden';
	}
}

function swf_object(swf_card, swf_width, swf_height, id){
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH='+swf_width+' HEIGHT='+swf_height+' id="'+id+'">');
	document.write('<PARAM NAME=movie VALUE="'+swf_card+'">');
	document.write('<PARAM NAME=quality VALUE=high>');
	document.write('<PARAM NAME=wmode VALUE="Transparent">');
	document.write('<PARAM NAME=bgcolor VALUE="">');
//	document.write('<PARAM NAME="sitename" VALUE="www.miniih.com">');
	
	
	document.write('<PARAM NAME=menu VALUE=false>');
	document.write('<EMBED src="'+swf_card+'"   AUTOSTART=true LOOP=true quality=high WIDTH='+swf_width+' HEIGHT='+swf_height+' bgcolor="" wmode=Transparent TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
	document.write('</object>');
}
function confirm_url(url,answer){
	var t=confirm(answer);
	if(t){
		window.location=url;
	}else{
	return false;
	}
}
function change_image(div_id,url){
	document.getElementById(div_id).innerHTML = '<img src="'+url+'" />';
}

