function popup(url) {

	var width = 500;
	var height = 500;
	
	window.open(url,'help','width='+width+',height='+height+',menubar=no,location=no,resizable=no,scrollbars=yes,status=no');
}

function smallPopup(url) {
	var width = 400;
	var height= 300;

	window.open(url,'wishlist','width='+width+',height='+height+',menubar=no,location=no,resizable=no,scrollbars=yes,status=no');
}

function largePopup(url) {
	var width = 640;
	var height= 440;

	window.open(url,'product','width='+width+',height='+height+',menubar=no,location=no,resizable=no,scrollbars=yes,status=no');
}
