function shoppingCartPop(type, name) {
 var url = "/paypal/addtocart.php?type=" + type + "&name=" + name;
newwindow = window.open (url, 'paypal', 'width=900,height=600,resizable=1');
if (window.focus) {newwindow.focus()}
}

function viewCartPop() {
 var url = "/paypal/shoppingbag.php";
newwindow = window.open (url, 'paypal', 'width=900,height=600,resizable=1');
if (window.focus) {newwindow.focus()}
}

function imagePopUp2(image, title) {
	URL = '/common/imagepop.php?image=' + image + '&title=' + title
	window.open(URL, 'image', 'toolbar=0,scrollbars=auto,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=400')
}



function loadpromotion() {
	//if (document.getElementById("promotion")) {
		//promotionHTML = "<a href=\"/promotions/ornament.html\"><img src=\"/images/ornamentlarge.jpg\" border=\"0\" alt=\"promotion\" 	width=\"118\" height=\"118\" /></a>";
		//promotionHTML = "";
		//document.getElementById("promotion").innerHTML = promotionHTML;
	//} else {
		
	//}
}

function setInnerHTML(divto, divfrom) {
	document.getElementById(divto).innerHTML=document.getElementById(divfrom).innerHTML;

}
			
			
