function openWindow(theURL,winName, features) { //v2.0
  	newwindow = window.open(theURL,winName,features);
	if (window.focus) {newwindow.focus()}
}

function CheckLength(maxLength) {

	var charLeft = maxLength - document.getElementById("shortDescription").value.length;
	
	document.getElementById("chars").innerHTML = "" + charLeft;	

	if (document.getElementById("shortDescription").value.length >= maxLength+1) {
		document.getElementById("shortDescription").value = document.getElementById("shortDescription").value.substring(0, maxLength);
		return false; 
	}
}

function trackclick(id) {
    if(document.images){ 
        (new Image()).src="http://www.butiksportalen.se/trackclick.php?store="+id; 
    } 
    return true;
}

function trackproduct(id) {
    if(document.images){ 
        (new Image()).src="http://www.butiksportalen.se/trackproduct.php?productID="+id; 
    } 
    return true;
}