function getTop(item){
	var myTarget = item;  
	var top=0;
	while(myTarget!= document.body) {
		top += myTarget.offsetTop;     
		myTarget = myTarget.offsetParent;   
	} 
	return top;
}

function getLeft(item){
	var myTarget = item;  
	var left=0;
	while(myTarget!= document.body) {
		left += myTarget.offsetLeft;     
		myTarget = myTarget.offsetParent;   
	} 
	return left;
}

function goPage(link,target){
	if(!target)
		document.location.href=link;
	else
		window.open(link,"","resizable=yes,width=900,height=500,status=yes,location=yes,menubar=yes,scrollbars=yes")
}

function changeImage(image,imID,height,width){
	currentImage=imID;
	var im=document.getElementById('productImage');
	im.src=image;
	im.height=height;
	im.width=width;
}

function popIm(){

	if(currentImage)
		window.open('popImage.php?id='+currentImage,"","resizable=yes,width=600,height=400,status=yes,location=no,menubar=no,scrollbars=yes")
}

function popColorCard(id){

	if(id)
		window.open('popImage.php?ccID='+id,"","resizable=yes,width=600,height=400,status=yes,location=no,menubar=no,scrollbars=yes")
}

function popWin(url,he,wi){
	if(he<=0)he = '300';
	if(wi<=0)wi = '300';
	
	var kyssa=window.open(url,'','width='+wi+',height='+he+',resizable=yes,toolbar=yes,status=yes,location=yes,menubar=yes,scrollbars=yes,top=10,left=10');	
}