/* PROJECTS */
function setInfo(id, lan){
	document.getElementById("flash").style.display = "block";
	document.getElementById("portrait").style.display = "none";
	document.getElementById("landscape_left").style.backgroundImage = "url(../_imgs/shim.gif)";
	document.getElementById("landscape_right").style.display = "none";
	
	var params = {};
	params.bgcolor = "#CC0000";
    var flashvars = {};
	flashvars.projID = id;
	flashvars.hdID = id;
	flashvars.lan = lan;
    swfobject.embedSWF("info.swf", "flash", "650", "600", "9.0.0", "../expressInstall.swf", flashvars, params);
}

function setYoutube(yt){
	document.getElementById("flash").style.display = "block";
	document.getElementById("portrait").style.display = "none";
	document.getElementById("landscape_left").style.backgroundImage = "url(../_imgs/shim.gif)";
	document.getElementById("landscape_right").style.display = "none";
	
	var params = {};
	params.bgcolor = "#000000";
	params.allowFullScreen = "true";
	params.allowscriptaccess = "always";
	params.autoplay = 1;
    var flashvars = {};
    swfobject.embedSWF(yt, "flash", "650", "390", "9.0.0", "../expressInstall.swf", flashvars, params);
}

function setPicture(orient, pic){
	swfobject.embedSWF("../_imgs/shim.gif", "flash", "0", "0", "7.0.0");
	document.getElementById("flash").style.display = "none";
	//
	if(orient == "landscape"){
		document.getElementById("portrait").style.display = "none";
		document.getElementById("landscape_right").style.display = "block";
		
		document.getElementById("landscape_left").style.backgroundImage = "url("+pic+")";
		document.getElementById("landscape_right").style.backgroundImage = "url("+pic+")";
		
	} else {
		document.getElementById("portrait").style.display = "block";
		document.getElementById("landscape_right").style.display = "none";
		document.getElementById("landscape_left").style.backgroundImage = "url(../_imgs/shim.gif)";
		
		document.getElementById("portrait").innerHTML = "<img src='"+pic+"' />";
	}
}



/* PUBLICATIONS */
function setPubPic(pic){
	document.getElementById("pubcontent").style.display = "block";
	document.getElementById("pubcontent").innerHTML = "<img src='"+pic+"' />";
	
	document.getElementById("yt").style.display = "none";
	swfobject.embedSWF("../_imgs/shim.gif", "yt", "0", "0", "7.0.0");
}

function setPubVid(vid){
	var params = {};
	params.bgcolor = "#000000";
	params.allowFullScreen = "true";
	params.allowscriptaccess = "always";
	params.autoplay = 1;
    var flashvars = {};
    swfobject.embedSWF(vid, "yt", "650", "390", "9.0.0", "../expressInstall.swf", flashvars, params);
	
	//document.getElementById("pubcontent").innerHTML = "<img src='../_imgs/shim.gif' />";
	document.getElementById("pubcontent").style.display = "none";
}
