Page coming up blank in IE & Safari

The website I am designing is driving me crazy. One of the pages is coming up blank in IE & Safari but works fine in FF. I assume it is something in the code but I can't figure it out.I am somewhat new to this type of stuff so any help would be appreciated.
Here is the code for the page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<title>Welcome to ACE Hardware of Rome</title> 
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script> 
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" /> 
<link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" /> 
<script type="text/javascript"> 
<!-- 
function MM_swapImgRestore() { //v3.0 
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; 
function MM_preloadImages() { //v3.0 
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); 
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) 
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} 
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["hotbuys/antifreeze.png", "", ""] //plain image syntax
fadeimages[1]=["hotbuys/rvantifreeze.png", "", ""]
fadeimages[2]=["hotbuys/rake.png", "", ""]
fadeimages[3]=["hotbuys/pushbroom.png", "", ""] 
var fadebgcolor="white" 
////NO need to edit beyond here/////////////
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"> <div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
this.rotateimage()
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
//-->
</script>
<style type="text/css">
<!--
.style1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #FF0000;
.style2 {font-family: Geneva, Arial, Helvetica, sans-serif}
.style3 {font-family: Verdana, Arial, Helvetica, sans-serif}
a:link {
    text-decoration: none;
a:visited {
    text-decoration: none;
a:hover {
    text-decoration: none;
a:active {
    text-decoration: none;
-->
</style>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head> 
<body onload="MM_preloadImages('images/sidebuttons_roll_01.png','images/sidebuttons_roll_02.png ','images/sidebuttons_roll_03.png','images/sidebuttons_roll_04.png','images/sidebuttons_ro ll_05.png','images/bottombuttons_roll_01.png','images/bottombuttons_roll_02.png','images/b ottombuttons_roll_03.png','images/bottombuttons_roll_04.png')">
<div align="center">
  <table width="751" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td colspan="4"><img src="topredstrip.jpg" width="751" height="24" border="0" usemap="#Map" /></td>
    </tr>
    <tr>
      <td height="89" colspan="4"><img src="aceheader.jpg" width="751" height="101" /></td>
    </tr>
    <tr>
      <td colspan="4" bgcolor="#E20014"><div align="left">
          <ul class="MenuBarHorizontal style2" id="MenuBar1">
            <li><a href="index.html" class="style7"><strong>Home</strong></a> </li>
            <li><a href="about.html" class="style7"><strong>About Us</strong></a></li>
            <li><a href="staff.html" class="style7"><strong>Our Team</strong></a></li>
            <li><a href="departments.html" class="style5 style3"><strong>Departments</strong></a> </li>
            <li><a href="#" class="style8"><strong>Services</strong></a></li>
            <li><a href="#" class="MenuBarItemSubmenu style7"><strong>Vendor Links</strong></a>
              <ul>
                  <li><a href="http://www.stihldealer.net/default-dealer-043026.aspx" target="_blank">Stihl</a></li>
                  <li><a href="http://www.weber.com/us/" target="_blank">Weber</a></li>
                  <li><a href="http://www.scotts.com/smg/" target="_blank">Scotts</a></li>
                  <li><a href="http://www.naturapet.com/" target="_blank">Natura Pet Products</a></li>
                  <li><a href="http://www.nutroproducts.com/" target="_blank">Nutro Pet Food</a></li>
                </ul>
            </li>
          </ul>
      </div></td>
    </tr>
    <tr>
      <td width="170" valign="top" bgcolor="#000000"><a href="signup.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image14','','images/sidebuttons_roll_01.png',1)"><img src="images/sidebuttons_01.png" name="Image14" width="170" height="69" border="0" id="Image14" /></a><a href="http://www.acehardware.com/infohome/index.jsp?clickid=body_projectsandsolutions_img" target="_blank" onmouseover="MM_swapImage('Image15','','images/sidebuttons_roll_02.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/sidebuttons_02.png" name="Image15" width="170" height="66" border="0" id="Image15" /></a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image16','','images/sidebuttons_roll_03.png',1)"><img src="images/sidebuttons_03.png" name="Image16" width="170" height="66" border="0" id="Image16" /></a><a href="https://www.acehardware.com/acerewards/index.jsp" target="_blank" onmouseover="MM_swapImage('Image17','','images/sidebuttons_roll_04.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/sidebuttons_04.png" name="Image17" width="170" height="67" border="0" id="Image17" /></a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image18','','images/sidebuttons_roll_05.png',1)"><img src="images/sidebuttons_05.png" name="Image18" width="170" height="72" border="0" align="top" id="Image18" /></a></td>
      <td colspan="3"><table width="581" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td width="9" height="219"> </td>
          <td width="340"><p align="center"><span class="style1">Welcome to ACE Hardware</span><br />
              <img src="rotating pics/storefront.png" width="321" height="210" /></p>
            </td>
          <td width="232" height="219"><div align="right">
            <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','222','height','219','src','rotating pics/rotatingpics','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','rotating pics/rotatingpics' ); //end AC code
          </script>
            <noscript>
              <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="222" height="219">
                <param name="movie" value="rotating pics/rotatingpics.swf" />
                <param name="quality" value="high" />
                <embed src="rotating pics/rotatingpics.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="222" height="219"></embed>
              </object>
              </noscript>
          </div></td>
        </tr>
        <tr>
          <td height="100" colspan="3"><table width="581" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="140" height="112"><a href="http://acehardware.shoplocal.com/acehardwarecircular/default.aspx?action=browsepageflash&s toreid=2432523&rapid=756011&prvid=ace-091001SS&promotioncode=ace-091001SS" target="_blank">
                <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 100, 0, 6000, 0, "R")
                </script>
              </a></td>
              <td><a href="http://www.edenpure.com/main" target="_blank">
                <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','441','height','100','src','banner ads/edenpure','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','banner ads/edenpure' ); //end AC code
              </script>
                <noscript>
                  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="441" height="100">
                    <param name="movie" value="banner ads/edenpure.swf" />
                    <param name="quality" value="high" />
                    <embed src="banner ads/edenpure.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="441" height="100"></embed>
                  </object>
                  </noscript>
              </a></td>
            </tr>
          </table></td>
        </tr>
      </table></td>
    </tr>
    <tr>
      <td><a href="http://www.stihldealer.net/default-dealer-043026.aspx" target="_blank" onmouseover="MM_swapImage('Image12','','images/bottombuttons_roll_01.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/bottombuttons_01.png" name="Image12" width="170" height="150" border="0" id="Image12" /></a></td>
      <td width="204"><a href="http://www.edenpure.com/main" target="_blank" onmouseover="MM_swapImage('Image13','','images/bottombuttons_roll_02.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/bottombuttons_02.png" name="Image13" width="204" height="150" border="0" id="Image13" /></a></td>
      <td width="199"><a href="keurig.html" onmouseover="MM_swapImage('Image19','','images/bottombuttons_roll_03.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/bottombuttons_03.png" name="Image19" width="199" height="150" border="0" id="Image19" /></a></td>
      <td width="178"><a href="http://www.acehardware.com/category/index.jsp?categoryId=2568447&clickid=topnav_paint" target="_blank" onmouseover="MM_swapImage('Image20','','images/bottombuttons_roll_04.png',1)" onmouseout="MM_swapImgRestore()"><img src="images/bottombuttons_04.png" name="Image20" width="177" height="150" border="0" id="Image20" /></a></td>
    </tr>
    <tr>
      <td colspan="4"><table width="750" border="0" cellpadding="0" cellspacing="0" dwcopytype="CopyTableCell">
        <tr>
          <td><a href="http://maps.google.com/maps?hl=en&q=115+Black+River+Blvd.,+Rome+NY&ie=UTF8&split=0&gl=us&e i=8BNJSpL-B5LCtwf26eGmBg&ll=43.218688,-"><img src="find.jpg" width="266" height="53" border="0" /></a><img src="middle_find.jpg" width="298" height="53" /><img src="contact_top.jpg" width="186" height="53" border="0" usemap="#Map2" /></td>
        </tr>
      </table>
        <map name="Map2" id="Map2">
          <area shape="rect" coords="46,19,167,54" href="#" />
          <area shape="rect" coords="46,51,136,69" href="#" />
        </map>      </td>
    </tr>
    <tr>
      <td colspan="4"><img src="bottom.jpg" alt="" width="750" height="25" border="0" usemap="#Map3" />
        <map name="Map3" id="Map3">
          <area shape="rect" coords="610,-1,733,13" href="#" />
          <area shape="rect" coords="168,3,236,18" href="#" />
          <area shape="rect" coords="245,1,290,19" href="#" />
          <area shape="rect" coords="299,1,361,18" href="#" />
          <area shape="rect" coords="369,2,424,18" href="contact.html" />
        </map>      </td>
    </tr>
  </table>
</div> 
<map name="Map" id="Map"><area shape="rect" coords="2,3,86,18" href="contact.html" />
</map><script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script></body>
</html>

In your code you are missing a closing --> comment tag just before the closing </script> tag (I've included it below)
<script type="text/javascript">
<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
-->
</script>

Similar Messages

  • Book Binding with a PDF Cover Page - cover page coming in blank

    Hi All,
    I have sucessfully created a pdf book using PDFBookBinder. I'm getting a blank page when I try to use a Pdf as my cover sheet. My toc.xml looks like this....
    <?xml version="1.0" encoding="utf-8" ?> <outline xmlns="http://xmlns.oracle.com/oxp/book/">
    <title-page type="pdf">L:\badev\templates\quoting\temp\QUOTEFile10691\QUOTE10696.PDF</title-page>
    <toc-template>..\user_templates\BookBindingTemplates\toc-template.rtf</toc-template>
    <item>
    <title>112112</title>
    <content>L:\badev\templates\quoting\temp\QUOTEFile10691\QUOTE112112.PDF</content>
    <pagenum-template type="rtf">..\user_templates\BookBindingTemplates\pagenum.rtf</pagenum-template>
    </item>
    <item><title>1124343</title>
    <content>L:\badev\templates\quoting\temp\QUOTEFile10691\QUOTE1124343.PDF</content>
    <pagenum-template type="rtf">..\user_templates\BookBindingTemplates\pagenum.rtf</pagenum-template>
    </item>
    </outline>
    the File L:\badev\templates\quoting\temp\QUOTEFile10691\QUOTE10696.PDF is a one page pdf but for some reason it is coming in blank... Has anyone come accross this before?
    thanks,
    Matt

    Hi Matt,
    I'm also trying to use the PDF Book Binder API.
    I used the FOProcessor to convert a number of XSL files into PDF files and I'm nowing trying to use the PDFBookBinder to add a 'table of contents' to my PDFs.
    Where you able to dynamically create the TOC?
    And if so, I would be grateful if you could provide some detail on how it was done.
    P.S. Sorry to be answering your question with a question.
    Many Thanks
    Keith

  • TS3274 Email page coming up ,blank, any ideas

    , I access my email and it comes up blank, no mailboxes. Anyone had this problem?

    Try the iPad Mail Assistant help here.

  • I "upgraded" to FF4, now it doesnt work properly, wont open pages, will open blank tabs when i click on a link, tried to go back to the older one but that doesnt work now either, have tested it with Safari and it opens everything fine. Any ideas?

    After upgrading to firefox 4 im now having a lot of problems using the browser.
    if i try an open a link in a new tab it will just open up a blank tab, if i click on links or even type in the google search bar at the top it doesnt do anything, it just says "done" and the circle thing stops as if im on the page already, have tested it with Safari doing the same things and Safari works fine. I'd swap but all my bookmarks and passwords are in Firefox so id rather stay with that.
    I tried going back to the older version of firefox (3.5 or something) but seems the bugs are here to stay now.......so.......any ideas? because its really annoying, shouldn't have "upgraded".
    Is there a new patch coming out anytime soon or should i start getting used to Safari?
    Thanks for your help.
    Mark Lavery (Melbourne)

    I would copy over the entire thing if you have room.  With iTunes 10.4 though, you can download any previous iTunes purchases you have made in the past with your current iTunes account.  While in iTunes, look at the left hand side of your screen and select "Purchases" and look at the bottom right corner of the screen and select "Download Previous Purchases".  If you have an iPhone, iPod and/or iPad...you can do the same thing from each device.  Nice new feature...just remember that those ripped CDs need a back-up!!!  Enjoy...

  • I installed opera Mini Web browser 6.0.1. When open the application only blank page coming. Please provide solution. Kind Regards Nias Ahamed

    I installed opera Mini Web browser 6.0.1. When open the application only blank page coming. Please provide solution. Kind Regards Nias Ahamed

    If you have an internet connection (e.g., Safari works) try here:
    iOS: Troubleshooting applications purchased from the App Store

  • New ink in Deskjet F380 but pages still coming out blank!!

    New ink in Deskjet F380 but pages still coming out blank!!

    Hi annettepmcp,
    I see that you're having problems with your printer.  I would take a look at the document below.
    Print Quality
    Let me know how it goes. 

  • I have iPad 3 64 GB ios6. After installing 6, my iPad is coming slow even typing. Safari open blank and crush often. I restore and reset several times. No change. Help me.

    I have iPad 3 64 GB ios6. After installing 6, my iPad is coming slow even typing. Safari open blank and crush often. I restore and reset several times. No change. Help me.

    Restore as new, i.e. without your backup.

  • I upgraded to snow leopard, since then safari does open in the dock but does not load as set in my preferences and the title page remains blank even though I have set-up a home page. I completely re-initialised safari, but no change.

    I upgraded to snow leopard, since then safari does open in the dock (white dot) but does not startup as set in system preferences. Also, if I open safari, the title page remains blank even though I have set a home page under safari's preferences. I re-initialised safari, but no change.

    Having put my home-page under "new windows open with home-page" solves the "blank title page problem".
    One problem left: "safari" does not startup automatically as set in system preferences, whereas "mail", also set for startup DOES startup

  • MY photosmart B 210 is not printing with the black ink at all. Pages are coming out blank

    Print report says ink is low in the colours but they do appear on the sheet but no black ink at all
    It is a relatively new cartridge and genuine HP ink. Stopped suddenly
    Pages from print or copy are coming out blank.
    Tried  to clean print heads and it says
    Print System Failure : Oxc19a0003
    and tells me to switch printer off and back on which I have now tried but getting the same message!
    What does this mean?

    Hi @BrendaMC,
    Welcome to the HP Forums!
    I noticed that your HP Photosmart B210 printer is not printing black ink, and that the pages are coming out blank. I am sorry to hear this, but happy to help!
    I would suggest to go through the following guides:
    Printer Prints a Blank Page or Does Not Print Black or Color Ink for the HP Photosmart Plus e-All-in....
    'Problem with Printhead,' 'Printer Failure,' 'Ink System Failure,' or a '0x...' or a 'C2...' Error M.... 
    Ink Usage in Inkjet Printers.
    Hope these guides are helpful, and have a good day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Blank page coming in the Webi Report in a particular tab

    Hi,
    i have a webi report which uses a two Cross tabs.and it is sectioned by 'Business Segment' object. and 'Group name' object has been used to group the data in each cross tab.it has multiple tabs in the report each named same as the group name used in the cross tab.
    so now when i export the report into the PDF document one of the tabs is having a blank page (i.e 2nd page is a blank page off the 4 pages it has). i am using XI R 3 version.
    so please suggest me what formatting changes to be done for that particular tab(s) to remove the blank page off the 4 pages.
    Immediate suggestion is very helpful.
    Thanks & Regards,
    Kishore.

    Hi,
    Thanks for your suggestion.however i checked all the cells. everything is well fitted.one more thing is that similar kind of data is visible in other tabs without any issues. so it is happening only in a particular tab.
    Any other advanced settings to do to avoid the blank pages in between  the PDF document?
    Regards,
    Kishore.

  • Web page turns out blank

    Hey Guys,
    Hope you can help me with this. I've going on this website but today this web page is just blank. I've tried on my other computer and it's fine.
    I've also done empty cache and relaunched safari as well as disk permission repair...
    Anyone have suggestions? Thanks

    HI,
    Loading here on 5.0.1.
    From the Safari Menu Bar click Safari/Reset Safari. Select the top 5 buttons. Click Reset.
    If you still have problems, go to Safari/Preferences then select the Security tab. Click: Show Cookies
    Delete any cookies related to that site.
    Relaunch Safari and try again.

  • Web page opens as blank

    I have been trying to open a web page on a site I have visited with no trouble before, but all I get is a blank, white page instead of the news article that it linked. Others are able to get the article, but I just get a blank page. I've tried using Safari, Camino, and Firefox, and all give me the same non-result. Could this be something to do with the Safari update I installed this morning??
    Any suggestions? It's just the one website that won't open for me (www.broadwayworld.com) -all its pages come up as blank...

    Hi finniii, I had the same problem until I found this: http://support.apple.com/kb/TS3408
    I tried the OpenDNS solution that is suggested in the article and it solved my problem.

  • Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

    Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

    Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

  • Crystal Report Coming out Blank

    Hi Guys
    I have been struggling for days now with a my vb.net app that is using sql server as DB. I am creating a crystal report but it seems it always comes out blank when i use my dataset as the datasource. If i change the datasource to my-pc it all works fine
    but i dont want this as it will be using another server after deploying the app.
    I have created a CrystalReportViewer1 and a rptAllEmployeesSalaries.rpt crystal report .The report is displaying data from two tables which i used an INNER JOIN Select statement. This is my code on the form load event;
    Private Sub frmrptAllEmployees_Load(sender As Object, e As EventArgs) Handles Me.Load
            Dim rpt As New rptAllEmployeesSalaries 'The report created.         
            Dim myConnection As New SqlConnection(ConfigurationManager.ConnectionStrings("TMS.My.MySettings.xConnectionString").ConnectionString)
            Dim MyCommand As New SqlCommand()
            Dim myDA As New SqlDataAdapter()
            Dim myDS As New xDataSet4 'The DataSet  created.  
            myConnection.Open()
            Try
                MyCommand.CommandText = "SELECT employeeWork_infor.jobTitle, employeeWork_infor.status, employeeWork_infor.branch, employeeSalaries.salary, employeeWork_infor.employeeSurname, employeeWork_infor.employeeName, employeeWork_infor.employeeNo
    FROM employeeWork_infor FULL JOIN employeeSalaries ON employeeWork_infor.employeeID = employeeSalaries.employeeID"
                MyCommand.CommandType = CommandType.Text
                myDA.SelectCommand = MyCommand
                MyCommand.Connection = myConnection
                myDA.Fill(myDS, "employeeWork_infor")
                myDA.Fill(myDS, "employeeSalaries")
                rpt.SetDataSource(myDS)
                CrystalReportViewer1.RefreshReport()
                CrystalReportViewer1.ReportSource = rpt
            Catch Excep As Exception
                MessageBox.Show(Excep.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            End Try
            myConnection.Close()
        End Sub
    End Class
    Please help my report always comes out blank im not sure why
    Trevor

    Thanx Venkat786
    1) i tried Running my T-sql query in SSMS and it does give me the data that i     want.
    2) I put the "myDS.WriteXml("c:\temp\result.xml")" before my set datasource line inside my code and it does write all the retrieved data to the result.xml file.
    3)When the designer previews the report it populates it with what looks like sample data and not data from my DB.
    From steps 1 & 2 it looks like all is working fine not sure if the result im getting on 3 is ok, but still after all this my report is still coming out blank.
    Would really appreciate it if you continue to assist...
     

  • I open my email from frontiernet (a local provider) I can read the email but when I go to reply or forward I get a Skype help page then a blank page. Therefore I can't reply or forward email.

    I log-in to webmail. frontier.com and go to my inbox. I have no trouble reading my email but I cannot reply or forward. When I try to do either I get a screen that first has a Skype help page then goes blank. It says done on the bottom but there is no reply box to type in. I've never had this problem before and I've been doing this for almost 2 years on may computers. The only thing different is I had some work done and had to re-install Firefox. Could a newer version cause the problem? I do not have this problem when I use IE or am on a different computer.This was happening even before I installed Skype.
    == URL of affected sites ==
    http://webmail.frontier.com/frontiermail/mail#2

    Disable the Skype extension for Firefox - both versions if you really have two versions installed.

Maybe you are looking for

  • Could you help me verify the authenticity of this disk?

    Yes, I bought photoshop on ebay. Yes, it was stupid. Yes, I've read the mega sticky on how insane it is. Let's just say I was drunk that day. Anyhoo, I want to make sure that this copy is definitely pirated before I go after this guy. Just wanted to

  • Change output from 4 lines to 1.

    ANyone know how I can change the output from this query so that it outputs a single row instead of 4? I need to be able to make the 4 decode select statements into a single one, this I know, but I have problems with the part where I want to take the

  • How to change my keyboard to Latin-American Spanish laguage?

    i installed solaris express developer edition 05/07 and i select "Spanish UTF8" in language in loggin screen, and later in gnome desktop in input methods, i add the spanish language, but i can't type the �,�,�,�,�,� letters.

  • Trigger TPSDLS01 IDoc to external TPS when outbound delivery is deleted

    Hi, We are currently trying to find a solution how to trigger a TPSDLS01 IDoc to external TPS when the outbound delivery is deleted. In the following SAP article: Logical Communication Processes Between the SAP System and the T - Supply Chain Plannin

  • JTable - make column headers clickable

    Hi all I have a JTable, and now I want to sort by column. I've actually got the column sorting working using menu items, but how can I make my column header clickable, and where do I add an actionListener to?