<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
	<channel>
		<title><![CDATA[ساحر]]></title>
		<link>http://saher.blogsky.com</link>
		<description><![CDATA[]]></description>
		<language>fa</language>
		<generator>RSS Generated by BlogSky.com</generator>
		
			
				<item>
					<title><![CDATA[قرار دادن جستجوگر کلمه در سایت]]></title>
					<link>http://saher.blogsky.com/1383/05/15/post-16/</link>
					<description><![CDATA[<P align=center><BR></P>
<BLOCKQUOTE>
<P align=center><FONT style="FONT-SIZE: 9pt" face=Tahoma>قرار دادن جستجوگر کلمه در سایت<BR></FONT><BR><TEXTAREA style="WIDTH: 424px; HEIGHT: 242px" name=FindInPageForm rows=14 cols=45>&lt;!-- START OF Find In Page Form DHTML --&gt;


&lt;!-- SUMMARY BRIEF

	This DHTML script mimics the Find (Ctrl+F)
	feature in your browser. It will look in the
	current page for whatever text the user inputs.
	If it finds the text, it hilights the text so
	the user can see it. If it doesn't find the
	text, it pops up a javascript alert stating
	that the text was not found on the current page.

--&gt;


&lt;!-- Put this portion of the script inside of your &lt;HEAD&gt; tag --&gt;


&lt;script language="JavaScript"&gt;

var NS4 = (document.layers);    
var IE4 = (document.all);

var win = window;    
var n   = 0;

function findInPage(str) {

  var txt, i, found;

  if (str == "")
    return false;

  if (NS4) {

    if (!win.find(str))
      while(win.find(str, false, true))
        n++;
    else
      n++;

    if (n == 0)
      alert("Not found.");
  }

  if (IE4) {
    txt = win.document.body.createTextRange();

    for (i = 0; i &lt;= n &amp;&amp; (found = txt.findText(str)) != false; i++) {
      txt.moveStart("character", 1);
      txt.moveEnd("textedit");
    }

    if (found) {
      txt.moveStart("character", -1);
      txt.findText(str);
      txt.select();
      txt.scrollIntoView();
      n++;
    }

    else {
      if (n &gt; 0) {
        n = 0;
        findInPage(str);
      }

      else
        alert("Not found.");
    }
  }

  return false;
}

&lt;/script&gt;


&lt;!-- Put this code into your page where you want the search form to appear. --&gt;


&lt;form name="search" onSubmit="return findInPage(this.string.value);"&gt;
&lt;font size=3&gt;&lt;input name="string" type="text" size=15 onChange="n = 0;"&gt;&lt;/font&gt;
&lt;input type="submit" value="Find"&gt;
&lt;/form&gt;


&lt;!-- END OF Find In Page Form DHTML --&gt;&lt;/body&gt;
&lt;/html&gt;
</TEXTAREA></P></BLOCKQUOTE>]]></description>
					<pubDate>Thu, 5 Aug 2004 08:03:49 GMT</pubDate>
					<comments>http://saher.blogsky.com/Comments.bs?PostID=16</comments>
          <guid>http://saher.blogsky.com/1383/05/15/post-16/</guid>
				</item>
			
				<item>
					<title><![CDATA[نمایش لینک به صورت منویی]]></title>
					<link>http://saher.blogsky.com/1383/05/15/post-15/</link>
					<description><![CDATA[<P align=center><BR><BR></P>
<BLOCKQUOTE>
<P align=center><FONT style="FONT-SIZE: 9pt" face=Tahoma>نمایش<SPAN lang=fa> لینک به صورت</SPAN> منویی</FONT><BR><BR><TEXTAREA style="WIDTH: 366px; HEIGHT: 239px" name=SlideOut rows=14 cols=39>&lt;!-- START OF Slide Out DHTML --&gt;

&lt;!-- SUMMARY BRIEFS

	This DHTML script is an entire webpage by itself.  Open it
	up into a blank webpage and try it out.  You can then add
	your content around it.  Basically, you can have 5 different
	"layers" which switch when the user clicks on the appropriate
	links.  You can adjust the links, colors, and text below.

     IMPORTANT

	This example has an image.  It is found in the CoffeeCup
	Software folder on your hard drive.
--&gt;


&lt;SCRIPT LANGUAGE="JavaScript"&gt;
&lt;!--



n = (document.layers) ? 1:0
ie = (document.all) ? 1:0

function init() {
	slideoutActive = 0
	if (n) {
		slideout1 = document.slideoutInterface.document.slideoutContent.document.slideoutContent1
		slideout2 = document.slideoutInterface.document.slideoutContent.document.slideoutContent2
		slideout3 = document.slideoutInterface.document.slideoutContent.document.slideoutContent3
		slideout4 = document.slideoutInterface.document.slideoutContent.document.slideoutContent4
                slideout5 = document.slideoutInterface.document.slideoutContent.document.slideoutContent5
	}

	if (ie) {
		slideout1 = slideoutContent1.style
		slideout2 = slideoutContent2.style
		slideout3 = slideoutContent3.style
		slideout4 = slideoutContent4.style
                slideout5 = slideoutContent5.style
	}
	slideoutShown = slideout1		
	slideoutShown.xpos = 0
	slideoutNew = "none"			
	slideoutNew.xpos = -285
}


function slideout(which) {
	if (!slideoutActive &amp;&amp; slideoutShown != which) {
		slideoutActive = 1  
		slideoutNew = which
		slideoutNew.xpos = -285
		slideoutLeft()
	}
}


function slideoutLeft() {
	if (slideoutShown.xpos &gt; -285) {
		slideoutShown.xpos -= 15
		slideoutShown.left = slideoutShown.xpos
		setTimeout("slideoutLeft()",30)
	}
	else {
		hide(slideoutShown)
		show(slideoutNew)
		setTimeout("slideoutRight()",50)
	}
}


function slideoutRight() {
	if (slideoutNew.xpos &lt; 0) {
		slideoutNew.xpos += 15
		slideoutNew.left = slideoutNew.xpos
		setTimeout("slideoutRight()",30)
	}
	else {
		slideoutShown = slideoutNew
		slideoutActive = 0  // stops the sequence
	}
}


function show(showobj) {
	if (n) showobj.visibility = "show"
	if (ie) showobj.visibility = "visible"
}
function hide(hideobj) {
	if (n) hideobj.visibility = "hide"
	if (ie) hideobj.visibility = "hidden"
}

//--&gt;
&lt;/SCRIPT&gt;
&lt;STYLE TYPE="text/css"&gt;
&lt;!--
A {color:#000000; font-family:'Arial'; font-weight:bold; font-size:10pt; text-decoration:none; line-height:20pt;}
STRONG {font-family:'Arial'; font-size:15pt; font-weight:bold; line-height:25pt;}
P {font-family:'Arial'; font-size:10pt; line-height:13pt;}
TD {font-family:'Arial'; font-size:10pt; line-height:13pt;}

#slideoutInterface {position:absolute; left:50; top:50; width:400; height:250; clip:rect(0,400,250,0); background-color:#000000; layer-background-color:#000000; visibility:visible;}
#slideoutSidebar1 {position:absolute; left:5; top:5; width:100; height:30; clip:rect(0,100,30,0); background-color:#9797FF; layer-background-color:#9797FF;}
#slideoutSidebar2 {position:absolute; left:5; top:40; width:100; height:30; clip:rect(0,100,30,0); background-color:#FFFF00; layer-background-color:#FFFF00;}
#slideoutSidebar3 {position:absolute; left:5; top:75; width:100; height:30; clip:rect(0,100,30,0); background-color:#FF80C0; layer-background-color:#FF80C0;}
#slideoutSidebar4 {position:absolute; left:5; top:110; width:100; height:30; clip:rect(0,100,30,0); background-color:#00FF80; layer-background-color:#00FF80;}
#slideoutSidebar5 {position:absolute; left:5; top:145; width:100; height:30; clip:rect(0,100,30,0); background-color:#FF5353; layer-background-color:#FF5353;}

#slideoutContent {position:absolute; left:110; top:5; width:285; height:240; clip:rect(0,285,240,0); background-color:#000000; layer-background-color:#000000;}
#slideoutContent1 {position:absolute; left:0; top:0; width:285; height:240; clip:rect(0,285,240,0); background-color:#DEDEDE; layer-background-color:#DEDEDE; visibility:visible;}
#slideoutContent2 {position:absolute; left:-285; top:0; width:285; height:240; clip:rect(0,285,240,0); background-color:#DEDEDE; layer-background-color:#DEDEDE; visibility:hidden;}
#slideoutContent3 {position:absolute; left:-285; top:0; width:285; height:240; clip:rect(0,285,240,0); background-color:#DEDEDE; layer-background-color:#DEDEDE; visibility:hidden;}
#slideoutContent4 {position:absolute; left:-285; top:0; width:285; height:240; clip:rect(0,285,240,0); background-color:#DEDEDE; layer-background-color:#DEDEDE; visibility:hidden;}
#slideoutContent5 {position:absolute; left:-285; top:0; width:285; height:240; clip:rect(0,285,240,0); background-color:#DEDEDE; layer-background-color:#DEDEDE; visibility:hidden;}

//--&gt;
&lt;/STYLE&gt;
&lt;/HEAD&gt;

&lt;BODY BGCOLOR="#FFFFFF" TEXT="#000000" onLoad="init()"&gt;

&lt;DIV ID="slideoutInterface"&gt;

&lt;DIV ID="slideoutSidebar1"&gt;&lt;P ALIGN=CENTER&gt;&lt;A HREF="javascript:slideout(slideout1)"&gt;Contact Us&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV ID="slideoutSidebar2"&gt;&lt;P ALIGN=CENTER&gt;&lt;A HREF="javascript:slideout(slideout2)"&gt;Help&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV ID="slideoutSidebar3"&gt;&lt;P ALIGN=CENTER&gt;&lt;A HREF="javascript:slideout(slideout3)"&gt;Services&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV ID="slideoutSidebar4"&gt;&lt;P ALIGN=CENTER&gt;&lt;A HREF="javascript:slideout(slideout4)"&gt;Products&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV ID="slideoutSidebar5"&gt;&lt;P ALIGN=CENTER&gt;&lt;A HREF="javascript:slideout(slideout5)"&gt;Order&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;

&lt;DIV ID="slideoutContent"&gt;

&lt;DIV ID="slideoutContent1"&gt;
&lt;P ALIGN="CENTER"&gt;&lt;STRONG&gt;Contact Us&lt;/STRONG&gt;
&lt;P&gt;
&lt;TABLE BORDER=0 WIDTH=275&gt;&lt;TD&gt;
You can add &lt;A HREF="http://www.webloger.5u.com"&gt;&lt;FONT COLOR=BLUE&gt;Links&lt;/FONT&gt;&lt;/A&gt;.
&lt;P&gt;
Or images: &lt;IMG SRC="smile.gif" BORDER=0 HEIGHT=11 WIDTH=11&gt;
&lt;P&gt;
Or just use text to explain what you have or what you are doing.
&lt;/TD&gt;&lt;/TABLE&gt;
&lt;/P&gt;
&lt;/DIV&gt;

&lt;DIV ID="slideoutContent2"&gt;
&lt;P ALIGN="CENTER"&gt;&lt;STRONG&gt;Help&lt;/STRONG&gt;
&lt;P&gt;
&lt;TABLE BORDER=0 WIDTH=275&gt;&lt;TD&gt;
You can add &lt;A HREF="http://www.webloger.5u.com"&gt;&lt;FONT COLOR=BLUE&gt;Links&lt;/FONT&gt;&lt;/A&gt;.
&lt;P&gt;
Or images: &lt;IMG SRC="smile.gif" BORDER=0 HEIGHT=11 WIDTH=11&gt;
&lt;P&gt;
Or just use text to explain what you have or what you are doing.

&lt;/TD&gt;&lt;/TABLE&gt;
&lt;/P&gt;
&lt;/DIV&gt;

&lt;DIV ID="slideoutContent3"&gt;
&lt;P ALIGN="CENTER"&gt;&lt;STRONG&gt;Services&lt;/STRONG&gt;
&lt;P&gt;
&lt;TABLE BORDER=0 WIDTH=275&gt;&lt;TD&gt;
You can add &lt;A HREF="http://www.webloger.5u.com"&gt;&lt;FONT COLOR=BLUE&gt;Links&lt;/FONT&gt;&lt;/A&gt;.
&lt;P&gt;
Or images: &lt;IMG SRC="smile.gif" BORDER=0 HEIGHT=11 WIDTH=11&gt;
&lt;P&gt;
Or just use text to explain what you have or what you are doing.

&lt;/TD&gt;&lt;/TABLE&gt;
&lt;/P&gt;
&lt;/DIV&gt;

&lt;DIV ID="slideoutContent4"&gt;
&lt;P ALIGN="CENTER"&gt;&lt;STRONG&gt;Products&lt;/STRONG&gt;
&lt;P&gt;
&lt;TABLE BORDER=0 WIDTH=275&gt;&lt;TD&gt;
You can add &lt;A HREF="http://www.webloger.5u.com"&gt;&lt;FONT COLOR=BLUE&gt;Links&lt;/FONT&gt;&lt;/A&gt;.
&lt;P&gt;
Or images: &lt;IMG SRC="smile.gif" BORDER=0 HEIGHT=11 WIDTH=11&gt;
&lt;P&gt;
Or just use text to explain what you have or what you are doing.

&lt;/TD&gt;&lt;/TABLE&gt;
&lt;/P&gt;
&lt;/DIV&gt;


&lt;DIV ID="slideoutContent5"&gt;
&lt;P ALIGN="CENTER"&gt;&lt;STRONG&gt;Order&lt;/STRONG&gt;
&lt;P&gt;
&lt;TABLE BORDER=0 WIDTH=275&gt;&lt;TD&gt;
You can add &lt;A HREF="http://www.webloger.5u.com"&gt;&lt;FONT COLOR=BLUE&gt;Links&lt;/FONT&gt;&lt;/A&gt;.
&lt;P&gt;
Or images: &lt;IMG SRC="smile.gif" BORDER=0 HEIGHT=11 WIDTH=11&gt;
&lt;P&gt;
Or just use text to explain what you have or what you are doing.

&lt;/TD&gt;&lt;/TABLE&gt;
&lt;/P&gt;
&lt;/DIV&gt;

&lt;/DIV&gt;

&lt;/BODY&gt;
&lt;/HTML&gt;

&lt;!-- END OF Slide Out DHTML --&gt;</TEXTAREA><BR><BR><BR></P></BLOCKQUOTE>]]></description>
					<pubDate>Thu, 5 Aug 2004 08:02:26 GMT</pubDate>
					<comments>http://saher.blogsky.com/Comments.bs?PostID=15</comments>
          <guid>http://saher.blogsky.com/1383/05/15/post-15/</guid>
				</item>
			
				<item>
					<title><![CDATA[یک منو بسیار زیبا]]></title>
					<link>http://saher.blogsky.com/1383/05/15/post-14/</link>
					<description><![CDATA[<P align=center><BR><BR>&nbsp;</P>
<BLOCKQUOTE>
<P align=center><STRONG><FONT size=3><FONT face="Tahoma, Arial, Helvetica, sans-serif"><SPAN lang=fa><FONT style="FONT-SIZE: 9pt">یک منو بسیار زیبا</FONT></SPAN><BR></FONT></FONT></STRONG><BR><TEXTAREA style="WIDTH: 350px; HEIGHT: 183px" name=DropDown rows=10 cols=37>&lt;!-- START OF Drop Down DHTML --&gt;

&lt;!-- SUMMARY BRIEFS
	This DHTML script will create a drop down link box out of
	an ordinary link.  VERY COOL!!!!

	The top portion of this script goes above the &lt;BODY&gt; tag.
	The second portion goes where you want the drop down link
	box to be.
--&gt;




&lt;style&gt;
&lt;!--
#wrapper{
position:relative;
height:30px
}

#wrapper2{
position:absolute
}

#coffeemenu03{
filter:revealTrans(Duration=1.5,Transition=12)
visibility:hide
}


--&gt;
&lt;/style&gt;&lt;/HEAD&gt;

&lt;BODY&gt;

&lt;ilayer id="coffeemenu01" height=35px&gt;
&lt;layer id="coffeemenu02" visibility=show&gt;
&lt;span id="wrapper"&gt;
&lt;span id="wrapper2" onClick="dropit2();event.cancelBubble=true;return false"&gt;
&lt;font face="Verdana"&gt;&lt;b&gt;&lt;a href="notthisbrowser.html"&gt;Click Here To Navigate&lt;/a&gt;&lt;/b&gt;&lt;/font&gt;
&lt;/span&gt;
&lt;/span&gt;
&lt;/layer&gt;
&lt;/ilayer&gt;

&lt;script language="JavaScript1.2"&gt;


var enableeffect=true

var selection=new Array()
selection[0]='&lt;font face="ARIAL BLACK"&gt;&lt;a href="http://www.webloger.5u.com"&gt;Order Our Stuff&lt;/a&gt;&lt;br&gt;'
selection[1]='&lt;a href="http://www.webloger.5u.com"&gt;Contact Us via E-mail&lt;/a&gt;&lt;br&gt;'
selection[2]='&lt;a href="http://www.webloger.5u.com"&gt;Help With Our Items&lt;/a&gt;&lt;br&gt;'
selection[3]='&lt;a href="http://www.webloger.5u.com"&gt;Products We Have&lt;/a&gt;&lt;br&gt;'
selection[4]='&lt;a href="http://www.webloger.5u.com"&gt;Services We Offer&lt;/a&gt;&lt;br&gt;&lt;/font&gt;'

if (document.layers)
document.coffeemenu01.document.coffeemenu02.visibility='show'

function dropit2(){
if (document.all){
coffeemenu03.style.left=document.body.scrollLeft+event.clientX-event.offsetX
coffeemenu03.style.top=document.body.scrollTop+event.clientY-event.offsetY+18
if (coffeemenu03.style.visibility=="hidden"){
if (enableeffect)
coffeemenu03.filters.revealTrans.apply()
coffeemenu03.style.visibility="visible"
if (enableeffect)
coffeemenu03.filters.revealTrans.play()
}
else{
hidemenu()
}
}
}

function dropit(e){
if (document.coffeemenu03.visibility=="hide")
document.coffeemenu03.visibility="show"
else
document.coffeemenu03.visibility="hide"
document.coffeemenu03.left=e.pageX-e.layerX
document.coffeemenu03.top=e.pageY-e.layerY+19
return false
}

function hidemenu(){
if (enableeffect)
coffeemenu03.filters.revealTrans.stop()
coffeemenu03.style.visibility="hidden"
}

function hidemenu2(){
document.coffeemenu03.visibility="hide"
}

if (document.layers){
document.coffeemenu01.document.coffeemenu02.captureEvents(Event.CLICK)
document.coffeemenu01.document.coffeemenu02.onclick=dropit
}
else if (document.all)
document.body.onclick=hidemenu

&lt;/script&gt;

&lt;div id="coffeemenu03" style="position:absolute;left:0;top:0;layer-background-color:#C0C0C0;background-color:#C0C0C0;width:200;visibility:hidden;border:2px solid black;padding:0px"&gt;
&lt;script language="JavaScript1.2"&gt;
if (document.all)
coffeemenu03.style.padding='4px'
for (i=0;i&lt;selection.length;i++)
document.write(selection[i])
&lt;/script&gt;
&lt;/div&gt;

&lt;script language="JavaScript1.2"&gt;
if (document.layers){
document.coffeemenu03.captureEvents(Event.CLICK)
document.coffeemenu03.onclick=hidemenu2
}
&lt;/script&gt;

&lt;!-- END OF Drop Down DHTML --&gt;</TEXTAREA><BR></P></BLOCKQUOTE>]]></description>
					<pubDate>Thu, 5 Aug 2004 08:00:23 GMT</pubDate>
					<comments>http://saher.blogsky.com/Comments.bs?PostID=14</comments>
          <guid>http://saher.blogsky.com/1383/05/15/post-14/</guid>
				</item>
			
		
	</channel>
</rss>
