function ForumJump(URL) {
	
	if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;	
	return true;
}


function openWin(theURL,winName,features) {
  	window.open(theURL,winName,features);
}


function OpenPreviewWindow(targetPage, formName){
	
	now = new Date	
 	
   	openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
   		
   	formName.action = targetPage + "?ID=" + now.getTime();	
	formName.target = "preview";
	formName.submit();
}

function selectAll(elementId) { 
  var element = document.getElementById(elementId); 
  if ( document.selection ) { 
    var range = document.body.createTextRange(); 
    range.moveToElementText(element); 
    range.select(); 
  } 
}

function KoduKopyala() { 
  var randomId = Math.floor(Math.random() * 2000); 
  document.write('<a onclick="selectAll(' + randomId + ')" onmouseover="this.style.cursor = \'pointer\'"><b>Tüm Kodu Seç</b></a></td></tr><tr><td id="kod" colspan="2"><div class="codediv" id="' + randomId + '">'); 
}