﻿// JScript File
function obj(x){return document.getElementById(x)};
function $(x){return document.getElementById(x)};

function docjslib_getRealLeft(imgElem) {
	xPos = eval(imgElem).offsetLeft;
	tempEl = eval(imgElem).offsetParent;
  	while (tempEl != null) {
  		xPos += tempEl.offsetLeft;
  		tempEl = tempEl.offsetParent;
  	}
	return xPos;
}
function docjslib_getRealTop(imgElem) {
	yPos = eval(imgElem).offsetTop;
	tempEl = eval(imgElem).offsetParent;
	while (tempEl != null) {
  		yPos += tempEl.offsetTop;
  		tempEl = tempEl.offsetParent;
  	}
	return yPos;
}
function yardim(x)
{
    yrdp=window.open('Yardim.aspx?id='+x,'yrdp','width=320,height=300,scrollbars=1,location=0,left=10,top=10,menubar=0,alwaysRaised=0,resizable=1,toolbar=0');
    yrdp.focus()
};
function CopyToClipBoard(code)  
{  
     if(window.clipboardData)  
     {  
         window.clipboardData.setData('text', code);  
     }  
}  


