<!--
// flashView Ver2.0(Path, Width, Height, ID, Background-Color, Param, WindowMode)
function flashview(url,w,h,id,bg,vars,win){

	var flashStr=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
	"<param name='allowScriptAccess' value='always' />"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='swLiveConnect' value='true' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<embed src='"+url+"' FlashVars='"+vars+"' wmode='"+win+"' menu='false' swLiveConnect='true' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

	document.write(flashStr);
}

//Window Popup
function OpenWindow(url,intWidth,intHeight) { 
	window.open(url, "_blank", "width="+intWidth+",height="+intHeight+",resizable=0,toolbars=0,scrollbars=0") ;
}

//Layer Swap 'For ں, Layer  tab_0#contents  
function tabSwap(sw) {
	for (i = 1; i < 4; i++) {
		if (sw == i) {		
			document.getElementById('tab_0'+i+'contents').style.display='';
		} else {
			document.getElementById('tab_0'+i+'contents').style.display='none';
		}
	}
}

//Z-INdex
function zChange( z ) {
 	var div = document.getElementById("floater");
	div.style.zIndex = z;
	
	return false; 
 }

//LEFT PRODUCT
function GoProduct() {
	location.href = document.searchForm.pid.value;
}

//MEDIA PLAYER
if ( navigator.appName == "Netscape" )	{
		navigator.plugins.refresh();
		document.write("<" + "applet MAYSCRIPT Code=NPDS.npDSEvtObsProxy.class" )
		document.writeln(" WIDTH=5 HEIGHT=5 NAME=appObs> </applet>")
	} 

	function vol_up()	{
		volume=MTVPlay.volume;
		if (volume==+2500){
			return false;
		}else{
			MTVPlay.volume=volume+250;
			volume=MTVPlay.volume;
		}
	}

	function vol_down()	{
		volume=MTVPlay.volume;
		if (volume==-2500){
			return false;
		}else{
			MTVPlay.volume=volume-250;
			volume=MTVPlay.volume;
		}
	}

	function muteoff()	{
		MTVPlay.mute=false;
	}

	function mute()	{
		MTVPlay.mute=true;
	}

	function ff()	{
		MTVPlay.next();
	}

	function pre()	{
		MTVPlay.previous();
	}

	function play()	{
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			MTVPlay.Play();
		} else {
			document.MTVPlay.Play();
		}
	}

	function pause()	{
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			if (MTVPlay.PlayState == 2){
				MTVPlay.Pause();
			} else {
				if (MTVPlay.PlayState == 1) {
					MTVPlay.Play();
				}
			}
		} else {
			document.MTVPlay.Pause();
		}
	}

	function stop()	{
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			MTVPlay.Stop();
			MTVPlay.CurrentPosition=0;
		} else {
			document.MTVPlay.Stop();
			document.MTVPlay.CurrentPosition=0;
		}
	}

	function muteClick()	{
		if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
			bMuteState = MTVPlay.Mute;
		} else {
			bMuteState = MTVPlay.GetMute();
		}

		if (bMuteState == true) {
			MTVPlay.value="Mute";
			if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
				MTVPlay.Mute = false;
			} else {
				MTVPlay.SetMute(false);
			}
		} else {
			MTVPlay.value="Un-Mute";
			if ((navigator.userAgent.indexOf('IE') > -1) && (navigator.platform == "Win32")) {
				MTVPlay.Mute = true;
			} else {
				MTVPlay
			}
		}
	}

	function fs()	{
		MTVPlay.DisplaySize = 3;
		MTVPlay.Play();
		MTVPlay.focus();
	}
-->
