function SearchKeyword() {
	var keyword;
	keyword = document.getElementById("txtSearchKeyword");
	if (keyword.value != "") {
		window.location.href = "search.aspx?k=" + escape(keyword.value);
	}
}

function SearchGenre() {
	var genre;
	genre = document.getElementById("ddlSearchCategory");
	window.location.href = "search.aspx?ge=" + genre.value;
}

function SearchCity() {
	var city;
	city = document.getElementById("ddlSearchCity");
	window.location.href = "search.aspx?ct=" + escape(city.value);
}

function SearchDate() {
	var day; var month; var year;
	day = document.getElementById("ctlDate_ddlDay");
	month = document.getElementById("ctlDate_ddlMonth");
	year = document.getElementById("ctlDate_ddlYear");
	
	var startDate;
	startDate = day.value + "/" + month.value + "/" + year.value;
	window.location.href = "search.aspx?sd=" + escape(startDate) + "&ed=" + escape(startDate);
}

/*function OpenS2F(BaseUrl) {
    var newWin;
    newWin = window.open(BaseUrl + "send-to-friend.aspx?url=" + encodeURI(location.href), "Send2Friend", "width=600,height=500,resizable=no,toolbar=no,status=no");
}*/

function pop(NAME, W, H, SCROLLBAR) {
    var L = (window.screen.width - W) / 2;
    var T = (window.screen.height - H) / 2;

    //window.open(NAME, "", "left=" + L + ",top=" + T + ",width=" + W + ",height=" + H + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + SCROLLBAR + ",resizable=yes,copyhistory=no,fullscreen=no");
    window.open(NAME, "test", "width=" + W + ",height=" + H + ",resizable=no,toolbar=no,status=no,scrollbars=" + SCROLLBAR);
}

/*function OpenVideo(sVideoPath) {
    NewWindow("PopupVideo.aspx?q=" + encodeURI(sVideoPath), "ShowbizVideo", 425, 365, "no");
}*/

function GetFlashVideo(sID, sVideoPath) {
    var objContainer = MM_findObj(sID);
    var sHTML = "";

    sHTML = "<object width=\"378\" height=\"290\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\">";
    sHTML += "<param value=\"./flash/videoplayer/player.swf\" name=\"movie\" />";
    sHTML += "<param value=\"file=./../../" + sVideoPath + "&filetype=video\" name=\"FlashVars\" />";
    sHTML += "<param value=\".\" name=\"base\" />";
    sHTML += "<param value=\"high\" name=\"quality\" />";
    sHTML += "<embed width=\"378\" height=\"290\" type=\"application/x-shockwave-flash\" quality=\"high\" base=\".\" flashvars=\"file=./../../" + sVideoPath + "&filetype=video\" src=\"./flash/videoplayer/player.swf\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
    sHTML += "</object>";

    objContainer.innerHTML = sHTML;
}
