تبليغاتX
عشق یانگوم
زندگی
 
  <script LANGUAGE="JavaScript">

// set speed of banner (pause in milliseconds between addition of new character)
var speed = 10

// decrease value to increase speed (must be positive)
// set pause between completion of message and beginning of following message
var pause = 1500

// increase value to increase pause
// set initial values
var timerID = null
var bannerRunning = false

// create array
var ar = new Array()

// assign the strings to the array's elements
ar[0] = "Welcome to javascript"
ar[1] = "I hope you enjoy the R-Banner script"
ar[2] = "It is designed to be more stable than regular banners"
ar[3] = "Don't forget to check out the other scripts!"

// assign index of current message
var message = 0

// empty string initialization
var state = ""

// no value is currently being displayed
clearState()

// stop the banner if it is currently running
function stopBanner() { 
 // if banner is currently running 
 if (bannerRunning)  
 // stop the banner  
 clearTimeout(timerID) 
 // timer is now stopped 
 timerRunning = false
}

// start the banner
function startBanner() { 
 // make sure the banner is stopped 
 stopBanner() 
 // start the banner from the current position 
 showBanner()
}

// assign state a string of "0" characters of the length of the current message
function clearState() { 
 // initialize to empty string 
 state = "" 
 // create string of same length containing 0 digits 
 for (var i = 0; i < ar[message].length; ++i) {  
  state += "0" 
 }
}

// display the current message
function showBanner() { 
 // if the current message is done 
 if (getString()) {  
  // increment message  
  message++  
  // if new message is out of range wrap around to first message  
 if (ar.length <= message)   
  message = 0  
  // new message is first displayed as empty string  
  clearState()  
  // display next character after pause milliseconds  
  timerID = setTimeout("showBanner()", pause) 
 }
 else {  
  // initialize to empty string  
  var str = ""  
  // built string to be displayed (only character selected thus far are displayed)  
 for (var j = 0; j < state.length; ++j) {   
  str += (state.charAt(j) == "1") ? ar[message].charAt(j) : "     "  
 }  
 // partial string is placed in status bar  
 window.status = str  
 // add another character after speed milliseconds  
 timerID = setTimeout("showBanner()", speed) 
 }
}

function getString() { 
 // set variable to true (it will stay true unless proven otherwise) 
 var full = true 
 // set variable to false if a free space is found in string (a not-displayed char) 
 for (var j = 0; j < state.length; ++j) {  
  // if character at index j of current message has not been placed in displayed string  
  if (state.charAt(j) == 0)   
  full = false 
 } 
 // return true immediately if no space found (avoid infinitive loop later) 
 if (full) return true 
 // search for random until free space found (braoken up via break statement) 
 while (1) {  
  // a random number (between 0 and state.length - 1 == message.length - 1)  
  var num = getRandom(ar[message].length)  
  // if free space found break infinitive loop  
 if (state.charAt(num) == "0")   
  break 
 } 
 // replace the 0 character with 1 character at place found 
 state = state.substring(0, num) + "1" + state.substring(num + 1, state.length) 
 // return false because the string was not full (free space was found) 
 return false
}

function getRandom(max) { 
 // create instance of current date 
 var now = new Date()  
 // create a random number (good generator) 
 var num = now.getTime() * now.getSeconds() * Math.random() 
 // cut random number to value between 0 and max - 1, inclusive 
 return num % max
}
startBanner()
// -->
</script>

|+| نوشته شده توسط احمد در دوشنبه هشتم مرداد 1386  |
 
 <!--Powered javascript code by www.Tarfandestan.com-->
<!-- Start of CoffeeCup Calculator Script -->
<!-- A Simple Calculator -->
<!-- Instructions: Just put this script anywhere on your webpage
 between the body tags and you will have a calculator for your visitors!  -->
<!-- Script supplied with CoffeeCup HTML Editor -->
<!--             www.iransohrab.net              -->
<CENTER>

<FORM name="Keypad" action="">
<TABLE>
<B>
<TABLE border=2 width=50 height=60 cellpadding=1 cellspacing=5>
<TR>
<TD colspan=3 align=middle>
<input name="ReadOut" type="Text" size=24 value="0" width=100% style="float: left">
</TD>
<TD
</TD>
<TD>
<p align="center">
<input name="btnClear" type="Button" value="  C  " onclick="Clear()">
</TD>
<TD><input name="btnClearEntry" type="Button" value="  CE " onclick="ClearEntry()">
</TD>
</TR>
<TR>
<TD>
<p align="center">
<input name="btnSeven" type="Button" value="  7  " onclick="NumPressed(7)">
</TD>
<TD>
<p align="center">
<input name="btnEight" type="Button" value="  8  " onclick="NumPressed(8)">
</TD>
<TD>
<p align="center">
<input name="btnNine" type="Button" value="  9  " onclick="NumPressed(9)">
</TD>
<TD>
</TD>
<TD>
<input name="btnNeg" type="Button" value=" +/- " onclick="Neg()">
</TD>
<TD>
<p align="center">
<input name="btnPercent" type="Button" value="  % " onclick="Percent()">
</TD>
</TR>
<TR>
<TD>
<p align="center">
<input name="btnFour" type="Button" value="  4  " onclick="NumPressed(4)">
</TD>
<TD>
<p align="center">
<input name="btnFive" type="Button" value="  5  " onclick="NumPressed(5)">
</TD>
<TD>
<p align="center">
<input name="btnSix" type="Button" value="  6  " onclick="NumPressed(6)">
</TD>
<TD>
</TD>
<TD align=middle><input name="btnPlus" type="Button" value="  +  " onclick="Operation('+')">
</TD>
<TD align=middle><input name="btnMinus" type="Button" value="   -   " onclick="Operation('-')">
</TD>
</TR>
<TR>
<TD>
<p align="center">
<input name="btnOne" type="Button" value="  1  " onclick="NumPressed(1)">
</TD>
<TD>
<p align="center">
<input name="btnTwo" type="Button" value="  2  " onclick="NumPressed(2)">
</TD>
<TD>
<p align="center">
<input name="btnThree" type="Button" value="  3  " onclick="NumPressed(3)">
</TD>
<TD>
</TD>
<TD align=middle><input name="btnMultiply" type="Button" value="  *  " onclick="Operation('*')">
</TD>
<TD align=middle><input name="btnDivide" type="Button" value="   /   " onclick="Operation('/')">
</TD>
</TR>
<TR>
<TD>
<p align="center">
<input name="btnZero" type="Button" value="  0  " onclick="NumPressed(0)">
</TD>
<TD>
<p align="center">
<input name="btnDecimal" type="Button" value="   .  " onclick="Decimal()">
</TD>
<TD colspan=3>
</TD>
<TD>
<p align="center">
<input name="btnEquals" type="Button" value="  =  " onclick="Operation('=')">
</TD>
</TR>
</TABLE>
</TABLE>
</B>
</FORM>
</CENTER>
<font face="Verdana, Arial, Helvetica" size=2>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var FKeyPad = document.Keypad;
var Accumulate = 0;
var FlagNewNum = false;
var PendingOp = "";
function NumPressed (Num) {
if (FlagNewNum) {
FKeyPad.ReadOut.value  = Num;
FlagNewNum = false;
   }
else {
if (FKeyPad.ReadOut.value == "0")
FKeyPad.ReadOut.value = Num;
else
FKeyPad.ReadOut.value += Num;
   }
}
function Operation (Op) {
var Readout = FKeyPad.ReadOut.value;
if (FlagNewNum && PendingOp != "=");
else
{
FlagNewNum = true;
if ( '+' == PendingOp )
Accumulate += parseFloat(Readout);
else if ( '-' == PendingOp )
Accumulate -= parseFloat(Readout);
else if ( '/' == PendingOp )
Accumulate /= parseFloat(Readout);
else if ( '*' == PendingOp )
Accumulate *= parseFloat(Readout);
else
Accumulate = parseFloat(Readout);
FKeyPad.ReadOut.value = Accumulate;
PendingOp = Op;
   }
}
function Decimal () {
var curReadOut = FKeyPad.ReadOut.value;
if (FlagNewNum) {
curReadOut = "0.";
FlagNewNum = false;
   }
else
{
if (curReadOut.indexOf(".") == -1)
curReadOut += ".";
   }
FKeyPad.ReadOut.value = curReadOut;
}
function ClearEntry () {
FKeyPad.ReadOut.value = "0";
FlagNewNum = true;
}
function Clear () {
Accumulate = 0;
PendingOp = "";
ClearEntry();
}
function Neg () {
FKeyPad.ReadOut.value = parseFloat(FKeyPad.ReadOut.value) * -1;
}
function Percent () {
FKeyPad.ReadOut.value = (parseFloat(FKeyPad.ReadOut.value) / 100) * parseFloat(Accumulate);
}
// End -->
</SCRIPT></font>
<p align="center"><a target="_blank" href="http://www.Tarfandestan.com">
<font size="2">Tarfandestan</font></a></p>

|+| نوشته شده توسط احمد در دوشنبه هشتم مرداد 1386  |
 
<!--Powered javascript code by www.Tarfandestan.com-->
|+| نوشته شده توسط احمد در دوشنبه هشتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
  

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
  

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
 

*سلام بچه ها خوبید شما*

 *ببخشید من یه چند وقتی نبودم البته الان هم نیستم*

حالا عکس میزارم ببینید

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
 

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 

یانگومعکسی از یانگومیکی دیگه از کارهای من

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 

 شماره تماس با یانگوم (FAX and Phone)

کم نیستند ایرانی های طرفدار یانگوم که دوست دارند به نحوی با این بازیگر کره ای تماس داشته باشند.جالب هم این است روزگار فعلی که به عصر ارتباطات مشهور شده دیگر هیچ محدودیتی برای تماسها نیست.اگر چند سال پیش که سریال اوشین پخش می شد هیچ راهی برای دسترسی به او وجود نداشت امروز شرایط جدیدی حاکم است.عصر ارتباطات دیگر مرزی باقی نگذاشته،همه به راحتی میتوانند به یکدیگر دسترسی داشته باشند.خانم لی نیز درجهان فعلی چنین اوضاعی را درک کرده وراههای ارتباطی مناسبی برای تماس هوادارانش فراهم آورده است.


1-از طریق فاکس،نوشته های خود را میتوانیدبه این شماره ارسال کنید:
7974-546-2-0082


2-ازطریق تلفن،شماره تلفن های یانگوم هم این است:
7971-546-2-0082
7972-546-2-0082
7973-546-2-0082

 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 

 

|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
|+| نوشته شده توسط احمد در یکشنبه هفتم مرداد 1386  |
 
 
بالا