
  function getLColor() {
		var $colorId = '';
		if(document.body.currentStyle) {
			$colorId = document.body.currentStyle['backgroundColor'];
		}
		else if(window.getComputedStyle) {
			$colorId = document.defaultView.getComputedStyle(document.body,null).getPropertyValue('background-color');
		}
		else if(document.body.style.backgroundColor) {
			$colorId = document.body.style.backgroundColor;
		}

		if($colorId !== undefined && $colorId != '' && $colorId != 'transparent') {
			top.document.body.style.backgroundImage = 'url(/images/spacer.gif)';
			top.document.body.style.backgroundColor = $colorId;
		}
	}

