function LoadMore(){
	if ($('page2').getStyle('display') == 'none'){
        $('page2').appear({ duration: 2.0 });
	}else{
    	if ($('page3').getStyle('display') == 'none'){
            $('page3').appear({ duration: 2.0 });
            $('footer_loading').setStyle({display:'none'});
        }
    }
}

function LoadMoreProducts(){
	if ($('moreFocus').getStyle('display') == 'none'){
        $('moreFocus').appear({ duration: 2.0 });
	    $('more_focus').fade();
	}
}

function mySbPrint(imgToPrint) {

    var theWork =  window.open('','PrintWindow');
    var html = "<html><head><title>Print</title><body>";
    html = html + "<img src='" + imgToPrint + "'/>";
    html = html + "</body></html>";
	
	theWork.document.open();
	theWork.document.write(html);
	theWork.document.close();
	theWork.print();
	theWork.close();

    return false;							
}
 