﻿/*#################################################################################################

	File name: functions.js
	Description: Common java script functions that are used in 'www.seagate-festival.com'.
	Editor: Kyoungwoo Ham <kyoungwoo.ham@gmail.com>
	Date of creation: 2007-09-18
	Date of final updating: 2008-09-22

#################################################################################################*/

function changeSubMenu(targetImg, imageSrc)
{
	var targetImage = document.getElementById(targetImg);
	targetImage.setAttribute("src", "/images/" + imageSrc);
}

function openGalleryWindow(arg)
{
	window.open(arg,'GalleryWindow',"top=10,left=10,width=570,height=500,menubar=no,scrollbars=no,resizable=no,status=no");
}

function openEventWindow01(arg)
{
	window.open(arg,'EventWindow01',"top=10,left=10,width=745,height=1056,menubar=no,scrollbars=yes,resizable=no,status=no");
}

function openEventWindow02(arg)
{
	window.open(arg,'EventWindow02',"top=10,left=10,width=800,height=1060,menubar=no,scrollbars=yes,resizable=no,status=no");
}

function openEventWindow03(arg)
{
	window.open(arg,'EventWindow03',"top=10,left=10,width=817,height=1136,menubar=no,scrollbars=yes,resizable=no,status=no");
}

function printSWF()
{
	var obj = new String; 
	var parameter = new String; 
	var embed = new String; 
	var html = new String; 
	var allParameter = new String; 
	var clsid = new String; 
	var codebase = new String; 
	var pluginspace = new String; 
	var embedType = new String; 
	var src = new String; 
	var width = new String; 
	var height = new String; 

	this.init = function( getType , s ,w , h ) { 

		if ( getType == "flash") 
		{ 

			clsid = "D27CDB6E-AE6D-11cf-96B8-444553540000";			
			codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"; 
			pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
			embedType = "application/x-shockwave-flash"; 
		} 

		parameter += "<param name='movie' value='"+ s + "'>\n";	
		parameter += "<param name='quality' value='high'>\n";		

		src = s; 
		width = w; 
		height = h; 
	} 

	this.parameter = function( parm , value ) {		
		parameter += "<param name='"+parm +"' value='"+ value + "'>\n";			
		allParameter += " "+parm + "='"+ value+"'"; 
	}	

	this.show = function() { 
		if ( clsid ) 
		{ 
			obj = "<object classid=\"clsid:"+ clsid +"\" codebase=\""+ codebase +"\" width='"+ width +"' height='"+ height +"'>\n"; 
		} 

		embed = "<embed src='" + src + "' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" ></embed>\n"; 

		if ( obj ) 
		{ 
			embed += "</object>\n"; 
		} 

		html = obj + parameter + embed; 
		
		document.write( html );	
	}
}