﻿function funMenuClick(s)
{
	var array = {item1:'../index.php', item2:'../index.php?control=index&action=home', item3:'../index.php?control=star', item4:'space.php', item5:'../index.php?control=favorite', item6:'../forum', item7:'../index.php?control=activity'};
	var login_array = ['item4'];
	var user_name = Cookie.get('goyeah_user_name');
	var uid = Cookie.get('goyeah_uid');
	if(array[s])
	{
		if(s == 'item4' || s == 'item5')
		{
			if(user_name == null && uid  == null)
			{
				window.location = 'space.php';
			}
			else
			{
				location.href=array[s];
			}
		}
		else
		{
			location.href=array[s];
		}
		//location_url(array[s]);
	}
}

function havePreview()
{

	if(jQuery('#flash_player').length > 0){
		var src = jQuery('#flash_player').attr('src');
		if (src.indexOf("youtube") < 0)
			return false;
		if(typeof(src)!='undefined'){
			var flash_url = src.split('=');
			var dom = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="450">'
		        + '<param value="transparent" name="wmode"/>'
				+ '<param value="'+flash_url[1]+'" name="movie" />'
				+ '<embed src="'+flash_url[1]+'" wmode="transparent" allowfullscreen="true" type="application/x-shockwave-flash" width="480" height="450"></embed>'
				+ '</object>';
			//remove flash_play object
			jQuery('#flash_player').replaceWith(dom);
			/*var div = document.createElement("DIV");
			div.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="450">'
		        + '<param value="transparent" name="wmode"/>'
				+ '<param value="'+flash_url[1]+'" name="movie" />'
				+ '<embed src="'+flash_url[1]+'" wmode="transparent" allowfullscreen="true" type="application/x-shockwave-flash" width="480" height="450"></embed>'
				+ '</object>';
			p.appendChild(div);
			//$('flash_player').src = flash_url[1];*/
		}
	}
}
function noPreview()
{
//	alert("no");
}
