//画面サイズ（高さ）判定
function monitorSize(){
	sh = screen.height ;
	if (screen.height < 800) return "sizeS";
	else  return "sizeL";
	}

mSize = monitorSize();

if (mSize == "sizeS") dirName = "css/s.css";
if (mSize == "sizeL") dirName = "css/l.css";


//stylesheet追加

link = document.createElement("link");
link.setAttribute("rel","stylesheet");
link.setAttribute("href",dirName);
link.setAttribute("type","text/css");

head = document.getElementsByTagName('head').item(0);
head.appendChild(link);


function sizeSWF(){
	if (screen.height < 800){
		var so = new SWFObject("images/fl/top_s.swf", "Salon de Speciare", "460", "420", "8", "#000000");
		so.write("flashcontent2");
		}else{
		var so = new SWFObject("images/fl/top_l.swf", "Salon de Speciare", "460", "600", "8", "#000000");
		so.write("flashcontent1");			
			}
	}











