
function checkoutProgressShow() {
getWindowSize();
  hideDropdowns();
  height = document.body.clientHeight;
  width = document.body.clientWidth;
  document.getElementById('checkoutProgressSpan').style.width = width+'px';
  document.getElementById('checkoutProgressSpan').style.height = height+'px';
  document.getElementById('checkoutProgressSpan').style.visibility = 'visible';
}

function checkoutProgressHide() {
  showDropdowns();
  document.getElementById('checkoutProgressSpan').style.visibility = 'hidden';
   document.getElementById('checkoutProgressSpan').style.width = '0px';
  document.getElementById('checkoutProgressSpan').style.height = '0px';
  fadeBackgroundHide();
  
}

function showProductOutline(productId) {

	var o=document.getElementById('viewProductLink'+productId);
	x=AnchorPosition_getPageOffsetLeft(o);
	y=AnchorPosition_getPageOffsetTop(o);

	document.getElementById('productOutlineSpan'+productId).style.left = (x-190)+'px';
	document.getElementById('productOutlineSpan'+productId).style.top = (y-200)+'px';
	document.getElementById('productOutlineSpan'+productId).style.visibility='visible';
	fadeIn('productOutlineSpan'+productId,0);

}

function hideProductOutline(productId) {
document.getElementById('productOutlineSpan'+productId).style.visibility='hidden';

}

function showInfoPopSpan () {
	getWindowSize();
	hideDropdowns();
    fadeBackgroundShow('popupFadeBackground');
	document.getElementById('infoPopSpan').style.visibility='visible';
	fadeIn('infoPopSpan',0);
}

function hideInfoPopSpan () {
    showDropdowns();
	document.getElementById('infoPopSpan').style.visibility='hidden';
    fadeBackgroundHide('popupFadeBackground');
}

function loadPopupIframe (spanId, url) {
	document.getElementById(spanId).innerHTML = '<iframe src=\''+url+'\' class=\'popupIframe\'></iframe>';

}


function processFadeHide() {

	
	hideError();


	
	hideOrderDetails();

}


