<!-- 
function  viewFlash(sURL, sName, sFeatures){
 var FLASHCAB = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab";
 var FLASHCID = "CLSID:D27CDB6E-AE6D-11CF-96B8-444553540000";
 var FLASHVER = "8,0,0,0";
 var sFeature;
 var sWidth  = "100%";
 var sHeight  = "100%";
 var pmBoolean = "false";
 var sTempArray;
 var sParamTag = "";
 sFeature = sFeatures.split(/\s*,\s*/);
 for (var i=0; i< sFeature.length ; i++)
 {
  sTempArray = sFeature[i].split(/\s*=\s*/);
  if (sTempArray[0].toLowerCase() == "width"){
  //넓이
  sWidth = sTempArray[1];
  }else if (sTempArray[0].toLowerCase() == "height"){
  //높이
  sHeight = sTempArray[1];
  }else{
  //기타 파라메터 처리
  if (sTempArray[1].toLowerCase() == "yes" || sTempArray[1] == "1" || sTempArray[1].toLowerCase() == "true"){
    pmBoolean = "true";
  }else if (sTempArray[1].toLowerCase() == "no" || sTempArray[1] == "0" || sTempArray[1].toLowerCase() == "false"){
    pmBoolean = "false";
  }else{
    pmBoolean = sTempArray[1];
  }
  sParamTag = "<PARAM NAME='"+sTempArray[0]+"'VALUE='" + pmBoolean + "'>\n"+sParamTag;
  }
 }

 document.write("<OBJECT ID='"+sName+"' NAME='"+sName+"' CLASSID='"+FLASHCID+"' CODEBASE='"+FLASHCAB+"#version="+FLASHVER+"' WIDTH='"+sWidth+"' HEIGHT='"+sHeight+"'>");
 document.write("<PARAM NAME='movie' VALUE='" + sURL + "'>");
 document.write(sParamTag);
 document.write("<param name='transparent' value='true'>"); 
 document.write("<EMBED SRC='"+sURL+"' MENU='false' transparent='true' WIDTH='"+sWidth+"' HEIGHT='"+sHeight+"' ID='"+sName+"' NAME='"+sName+"' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer' />")
 document.write("</OBJECT>");
} 



var msg = 'Bikram Yoga Palisades'; 
function hideURL() { 
window.status = msg; 
timerID= setTimeout("hideURL()", 0); 
} 
hideURL(); 

function listover(obj){
	obj.className="listover";
}
function listout(obj){
	obj.className="listout";
}
function OnZoomGallery(str1, str2){
	openWindows("/ZoomImage.asp?sType=0&strFileName=" + str1 + "&strBoardID=" + str2, "ZoomImage", 800, 600, 3);
}
//--> 
