﻿function getSWF(swWidth, swHeight, swFile, swWmode)
	{
		var str = '<object id="Denemeasdmsadla" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+swWidth+' height='+swHeight+' VIEWASTEXT>';
		str += '<param name="movie" value="'+swFile+'" />';
		str += '<param name="quality" value="high" />';
		// wmode = window, transparent, opaque
		str += '<param name="wmode" value="'+swWmode+'" />';
		str += '<embed src='+swFile+' width='+swWidth+' scale=noScale height='+swHeight+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>';
		str += '</object>';
		document.write(str);
	}
	function KillChar()
	{
		var injArray = new Array();
		injArray[0] = "select";
		injArray[1] = "drop";
		injArray[2] = ";";
		injArray[3] = "--";
		injArray[4] = "insert";
		injArray[5] = "delete";
		injArray[6] = "xp_";
		injArray[7] = "sp_";
		injArray[8] = "\"";
		injArray[9] = "'";
		injArray[10] = "<";
		injArray[11] = ">";
		injArray[12] = "|";
		var word = document.getElementById("TBKeyword").value.toLowerCase();
		for(j=0; j<=injArray.length; j++)
		{
		        word = word.replace(injArray[j], "");
		}
		if (word == "")
		{
		    alert('Lütfen aramak istediğiniz kelimeyi giriniz');
		    document.getElementById("TBKeyword").value  = "";
		}
		else
		{
			location.href = 'SearchResults.aspx?keyword=' + word;
		}
		
	}