function XJ(){
document.getElementById("CA").src="/Images/Shop_gwc2.gif";
}
function ShowDivxx(obj){
if(document.getElementById){
document.getElementById(obj).style.visibility="visible";
document.getElementById(obj).style.display="block";
}
}
function HideDivxx(obj){
if(document.getElementById){
document.getElementById(obj).style.visibility="hidden";
document.getElementById(obj).style.display="none";
}
}
function SL(){
var List=unescape(ReadOrderSheet("SGOrderSheet"));
var Sums=0;
if(List=="false"||List.indexOf("@@")==-1){
HideDivxx('MyCart001');
Sums=0;
}
else{
ShowDivxx('MyCart001');
var B_List=List.split("@@");
for(i=1;i<B_List.length;i++){
var S_List=B_List[i];
var B_S_List=S_List.split("^");
Sums=Sums+parseInt(B_S_List[6]);
}
}
document.getElementById("Sum").innerText=Sums;
if(Sums>0){
XJ();
}
}
function MoveLayer(){
var x=10;
var y=322;
var diff=(document.body.scrollTop+y-document.getElementById('MyCart001').style.pixelTop)*.4;
var y=document.body.scrollTop+y-diff;
eval("document.getElementById('MyCart001').style.pixelTop=y");
eval("document.getElementById('MyCart001').style.pixelRight=x");
setTimeout("MoveLayer();",20);
}