if (self.location.host != top.location.host) {
	top.location.href = self.location.href;
}

function opna_glugga(url, nafn, w, h, r, sc) {
	if (isNaN(w))  { w=620; }
	if (isNaN(h))  { h=600; }
	if (isNaN(r))  { r=0; }
	if (isNaN(sc)) { sc=0; }
	gluggi = window.open(url,nafn,"width="+w+",height="+h+",toolbar=0,status=0,resizable="+r+",menubar=0,scrollbars="+sc);
	gluggi.focus();
}

function opna_nyjan(url) {
	gluggi = window.open(url);
	gluggi.focus();
}

function ekkert () {}
//////////////////////////////////////////////

if(!(window.jQuery)) {
	var s = document.createElement('script');
	s.setAttribute('src', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
	s.setAttribute('type', 'text/javascript');
	document.getElementsByTagName('head')[0].appendChild(s);
}

function placeOrder(itemid,item,price) {
	$.ajax({
		method: "get",
		url: "/cart/order-ajax.pl",
		data: 'product_id='+itemid+'&product='+item+'&price='+price,
		success: function(svar) {
			readCart();
		}
	});
}

function readCart() {
	$.ajax({
		method: "get",
		url: "/cart/cart-ajax.pl",
		data: '',
		success: function(svar) {
			$('#cart').html(svar);
		}
	});
}

