function addToBasket( product_id ){
	
	if ( document.getElementById( product_id ) == null ){
		
		document.location.href='/kosarba/' + product_id;
		
	}else{
		
		
		var option = document.getElementById( product_id ).value;
		
		document.location.href='/kosarba/' + product_id + '-' + option;
		
		
	}
}

function openContact(){
    window.open("/kontakt.php","test","width=1000,height=695");
    
}

function closeContact(){
    alert("Üzenet elküldve!");
    window.close();
}

function clearInput ( id ){
    document.getElementById(id).value = "";
}

