function getCordinatesCK() {
	var screenWidth = screen.width;
	var screenHeight = screen.height;
	var windowWidth = (window.innerWidth != null ? window.innerWidth:document.body.clientWidth);
	var windowHeight = (window.innerHeight != null ? window.innerHeight:document.body.clientHeight);
	var windowPosX = (window.screenX != null ? window.screenX:window.screenLeft);
	var windowPosY = (window.screenY != null ? window.screenY:window.screenTop);
	return 'sw=' + screenWidth + '&sh=' + screenHeight + '&ww=' + windowWidth + '&wh=' + windowHeight + '&wpx=' + windowPosX + '&wpy=' + windowPosY;
}

function getQueryStringCK() {
        
        var url = window.location.href;
        if (url.indexOf("?") > -1 )
               return unescape(url.substring(url.indexOf("?") + 1));
        else    
                return "";
                
}

function checkjsCK() {

	preload_image1 = new Image(1,1);
	preload_image1.src="http://click.mygeek.com/jscheck.jsp?vid=564924&rno=" + Math.floor(Math.random()*1000).toString() + "&" + getCordinatesCK() + "&" + getQueryStringCK();

}
 
