﻿// JScript File
var popup="Erk Mühendislik | Her hakkı saklıdır."; 

function noway(go) { if 
(document.all) { if (event.button == 2) { alert(popup); return false; } } if (document.layers) 
{ if (go.which == 3) { alert(popup); return false; } } } if (document.layers) 
{ document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=noway;

function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function enterClicked(o, btn)
{
	var bt = document.getElementById(btn); 
	if (typeof bt == 'object')
	{ 
		if(navigator.appName.indexOf("Netscape")>(-1))
		{ 
			if (o.keyCode == 13)
			{ 
				bt.click(); 
				return false; 
			} 
		} 
		
		if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1))
		{ 
			if (event.keyCode == 13)
			{ 
				bt.click(); 
				return false; 
			} 
		} 
	} 
}

