﻿var prevGroupName;
function displayGroupName(groupName) {
	if (prevGroupName != groupName) {
		document.write('<tr><td colspan="2" class="GroupName"><h2>' + groupName + '</h2></td></tr>');
	}
	prevGroupName = groupName;
}
function Loading(targetID) {
	document.getElementById(targetID).innerHTML = '<div style="height:100%; width:100%; vertical-align:middle; text-align:center;"><img src="/i/ajax-loader.gif"></div>'
}
function WriteCompareList() {
	ProductService.ComparisonList(CompareListSuccessCallBack);
	Loading('DivCompareList');
	document.getElementById('ShowList').style.display = 'block';
}
function CompareListSuccessCallBack(result) {
	if (document.getElementById('DivCompareList') != undefined && document.getElementById('DivCompareList') != null) {
		if (result.length > 13) {
			document.getElementById('DivCompareList').innerHTML = result;
		}
		else {
			document.getElementById('DivCompareList').innerHTML = '<div align=center>Listeniz boş.</a>';
			document.getElementById('ShowList').style.display = 'none';
		}
	}
}
function RemoveFromCompareList(pid) {
	ProductService.RemoveComparisonItem(pid, RemoveFromCompareSuccessCallBack);
	Loading('DivCompareList');
}
function RemoveFromCompareSuccessCallBack(result) {
	WriteCompareList();
}
function RemoveBigCompareItem(pid) {
	ProductService.RemoveComparisonItem(pid, RemoveCompareItemSuccessCallBack);
}
function RemoveCompareItemSuccessCallBack(result) {
	window.location.href = window.location.href;
}

