document.write('


'); function showform(id){ document.getElementById('chatform'+id).style.display = 'block'; document.getElementById('chatlink'+id).style.display = 'none'; } function clearDefaultandCSS(el) { if (el.defaultValue==el.value){ el.value = ""; el.style.color = "#000"; } } function checkDefaultandCSS(el) { if (el.defaultValue==el.value){ return false ; } return true ; } function putDefaultandCSS(el) { if (el.value==""){ el.value = el.defaultValue; el.style.color = "gray"; } } function getrand(){ var rndid1 = Math.floor(Math.random()*10000000) +'b'; var rndid2 = Math.floor(Math.random()*10000000) +'a'; var rndid3 =rndid1+rndid2; return rndid3 ; } function sendform(id){ var elnickname = document.getElementById('nickname'+id) ; var nickname = document.getElementById('nickname'+id).value ; if(nickname!='' && checkDefaultandCSS(elnickname)){ var url = 'http://chat.cloob.com//profile/?mode=getchat&data=b020bklz0zxsbxlg-v-yjdwo-_-d&nickname='+nickname+'&rand_id='+id+'&'+getrand(); var jsel2 = document.createElement('SCRIPT'); jsel2.type = 'text/javascript'; jsel2.src = url; document.body.appendChild (jsel2); document.getElementById('chatlink'+id).innerHTML = 'صبر کنید'; document.getElementById('chatform'+id).style.display = 'none'; document.getElementById('chatlink'+id).style.display = 'block'; } } function openpage(url,divid){ document.getElementById(divid).style.display='none'; window.open( url, "myWindow","status = 0, height = 590, width = 500, resizable = 0" ); }