Generate new browser window on using include directive/action tag in curren

Hi Life line
if i used jsp include directive/action taag inside my current jsp code it open new browser window but if i
not use that include directive or action tag in my jsp source it properly display next jsp in
same browser window
how i can rid of this .i am confuse why it happens
thanks
Vivek Harnal

1) on clicking view button it submit other page by
script function()
2) it work fine & display in same browser window if i
am not incliudes jsp page after body tag .Your included JSP has a head and body of its own. If the including page has a head and body of its own, then the two will clash. Generally, it is best to make includes be fragments, ie, have no
<html> <head> </head> <body> </body> </html> tags.
3) included jsp use for standard menu based Header
source of included page is
<script type="text/javascript"
src="menu_array.js"></script>
<script type="text/javascript"
src="mmenu.js"></script>
<html>
<script language=javascript>
function show()
// Master array in Menu_Array.js contains sub menu
options available to super administrator
// show the menu
{     popup("master")
function show1(){
popup("requisition")
function show2(){
popup("purchase")
function show3(){
popup("receipt");
function show4(){
popup("reports");
</script>
<head>
<link rel="stylesheet" type="text/css" href="css.css">
<title>Procurement Automation System</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<base target="main">This means every link you click on will be sent to a new window or frame whose name is main. If no such window or frame exists, make one. If you do not want your links to bring you to a new window, you need to remove this <base target="main"> line.
>
>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0"
topmargin="0" marginwidth="0" marginheight="0">
<table width="982" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td><img src="images/header_inside.jpg" width="1004"
height="106"></td>
</tr>
<tr>
<td>
<table width="1012" border="0" cellspacing="0"
cellpadding="0" bgcolor="#a4c3cd">
<tr>
<td width="860" bgcolor="#a4c3cd">
<table width="819" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td width="5"> </td>
<td style='cursor: hand' width="113" ><b> </b><A
onmouseover="javascript:show()"><b>Master
Module</b></a>
<td style='cursor: hand' width="142"><b> </b><A
onmouseover="javascript:show1()"><b>Requisition
Module</b></a></td>
<td style='cursor: hand'
width="149"><b> </b><A
onmouseover="javascript:show2()"><b>Purchasing
Module</b></a></td>
<td style='cursor: hand'
width="140"><b> </b><A
onmouseover="javascript:show3()"><b>Receiving
Module</b></a></td>
<td style='cursor: hand' width="100"><b>
</b><A
onmouseover="javascript:show4()"><b>Reports</b></a></td></tr>
</table>
</td>
<td align="left" width="148">
<table border=0 cellspacing=0 bgcolor="#a4c3cd">
<td width="24%" align="center" valign="middle"><a
href="help.htm" ><img src="images/bt_help.gif"
width="52" height="20" border="0"></a></td>
<td width="4%" align="center" valign="middle"><img
src="images/white_bar.gif" width="2" height="17"></td>
<td width="32%" align="center" valign="middle"><a
href="logoff.jsp" target="_self"><img
src="images/bt_logout.gif" width="70" height="20"
border="0"></a></td>
<td width="8%"> </td>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>

Similar Messages

  • Any way to open new browser window without using image maps?

    Is there any way to open new browser window without using image maps? My code works fine in Firefox, but not in IE. There are 2 problems in IE: 1st is that the thumbnail images move up within their own borders & 2nd that when you click on an image it does open up a new browser window, but also redirects to the index page (in this case it's just a placeholder index page - the new one I've called index_new.html for the time being).
    Here is the link:
    http://www.susieharperdesigns.com/gallery_beads.html
    Any help is greatly appreciated.

    Your missing a value on the HREF.  In your code you have this:
    <area shape="rect" coords="-24,-9,106,144" href=" " onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    and it should be this:
    <area shape="rect" coords="-24,-9,106,144" href="javascript:void()" onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    If you fix the code on all your beads, it should work.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • How do I set the desired search enging when I open a new browsing window?

    When I open a new browser window, I used to get the Bing search engine option but now only the Yahoo search engin is shown. How do I reset the system to show Bing when opening a new browser window? thanks.

    I'm going to go out on a limb and guess that you've got a custom timecode field somewhere in your production and/or asset metadata group(s), right? And I'm going to further guess that this timecode field has dashes in it like this --:--:--:--, right? If so, try this: Click the arrow next to the timecode field and adjust the timecode so that it has a number (it doesn't matter what the number is as long it's not dashes - "00:00:00:00" is fine). Then Save this asset, close it and then reopen it and see if the beeping madness has vanished. Then, to make this change permanent for all of your new assets, make sure to edit the default value of any custom timecode fields to put zeros (or some other numeric default value) into them when a new asset is generated. If the asset still beeps when you open it, check the other metadata groups in your set to see if there isn't another empty timecode field lurking in the shadows.
    Jason

  • Disable menubar and location from popup dialog in new browser window

    How to hide the toolbar, menubar, location and status for the popup window (not inline, but new browser window style) using ADF 11g?
    Just like HTML javascript:
    window.open ('page.jsp', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')In ADF 11g, I have a jspx refered by a taskflow action with "dialog:" prefix, and I call it from a button like this:
    <af:commandToolbarButton text="Add"
    id="ctbAdd"
    action="dialog:create"
    useWindow="true"
    windowEmbedStyle="window"
    windowModalityType="applicationModal"
    windowHeight="400"
    windowWidth="600"
    />How to control the toolbar, menubar, location and status for the popup window?
    Thanks in advanced,
    Samson Fu

    I tried it but not success. My code as below:
        public void handleAddLaunch(LaunchEvent launchEvent) {
            launchEvent.getWindowProperties().put("toolbar", "no");
            launchEvent.getWindowProperties().put("menubar", "no");
            launchEvent.getWindowProperties().put("scrollbars", "no");
            launchEvent.getWindowProperties().put("resizable", "no");
            launchEvent.getWindowProperties().put("location", "no");
            launchEvent.getWindowProperties().put("status", "no");The popup windows contains all the toolbar, menubar, location...
    Is there any example or reference for the keys and values for getWindowProperties()?
    Regards,
    Samson Fu

  • Calling a new Browser Window from Web Dynpro Application - Empty Context

    Hello,
    I want to open a view in a new browser window, and followed the same way which is described in this thread:
    Open view in new browser window
    My first try was creating two applications, which refer to the same Component Controller. The opening of a new browser window is triggered by an action, which is called in the other application. As both applications have the same Component Controller, I thought, the context content has to be the same, but actually the context attributes are empty after opening of the new window.
    In my second try I created two applications with two different Component Controllers, mapped via embedded Interface Controller. The effect is the same - I have no context content in the view.
    Please, can anybody help me?
    Thank you in advance.
    Ilona Seifert

    I done something like this:
    [code]
    try {
    strURL =
         WDURLGenerator.getApplicationURL(
                        "$<b>PROJECT_PATH</b>$/$<b>PROJECT_NAME</b>$",
                                            "$<b>APPLIC_NAME</b>$");
    } catch (WDURLException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
    strURL += "?par1=";
    strURL +=  var1;
    strURL += "&par2=";
    strURL +=  var2;
    strURL += "&par3=";
    strURL +=  var3;
    [/code]
    and after i retrieve them:
    [code]
    Var1Value= WDWebContextAdapter.getWebContextAdapter().getRequestParameter("var1");
    [/code]

  • How to fix bookmark icons from reappearing in new browser windows despite having bookmark deiconizer enabled (Mac Snow Leopard/Firefox 20.0).

    Ever since Firefox upgraded to 20.0, my enabled deiconizer doesn't work when I open a new browser window. Using Mac/Snow Leopard.
    I want those bookmark toolbar icons to disappear permanently! They are nothing but clutter.

    Thanks for the suggestions. I think my next move is to contact Mozilla/FireFox to complain about this change and see if it can be fixed. If not, then I'll probably just switch to Safari. I lose patience with companies/programmers who do things like this. When I had programmers reporting to me (before I retired a few years ago), I would never let them get away with this sort of nonsense. User flexibility was a requirement.

  • Command to open a PDF generated Oracle Report in New browser window

    I know this is probably something for the Oracle Forums but I'll ask anyway because I can't find any info out there on this, without some extra work.
    I am generating a PDF file from 10g Oracle reports on Linux RHEL 5 and storing the PDF file to the server. I can send that PDF file directly to a printer with the "lpr" command and that part works fine.
    What I'm wanting to do now is "View" the PDF from within the server in a new window. We are using RHEL 5 (Linux) platform and I'm trying to see if there is a way to open the file with a "command line" command that will open it in a new browser window or new window period (opening it with Adobe Acrobat).
    Does anyone have a command that will do this? Otherwise, how has everyone else been handling this. The idea of just viewing the previously generated PDF Report file will save us overhead on our database servers because they won't have to re-run some of the same reports over and over.
    Any help and assistance is appreciated.
    Chris

    Several options:
    - If you only want to show the pdf to the client without printing, use destype=cache and use WEB.SHOW_DOCUMENT after the RUN_REPORT_OBJECT (for examples search the forms-forum, there are lots)
    -If you have to generate the pdf to a file to get it printed, you could
    +use WEBUTIL_FILETRANSFER.AS_TO_CLIENT after the printing to transfer the file to the client, then use CLIENT_HOST to view it.
    +map the appserver-directory you generate the report to as a virtual directory in the application-server then use WEB.SHOW_DOCUMENT to directly access the generated file via url.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Opening driving directions in new browser window

    I have installed the Web Assist Google Pro Maps extension and
    would like for the div containing the driving directions results:
    <div id="wagmp_directions_2"
    to appear in a new browser window.
    However, when I open the tag inspector, it says "locked
    region" for the Google maps divs, even though I detached the php
    page from the template. Any ideas?
    http://www.lindafarronknapp.com/map.php

    Sorry, mixed up my versions a bit. The following code doesn't open a new window.
    try {
                JSObject window;
                window = JSObject.getWindow(this);
                URL url = new URL(this.getCodeBase(), "mydomain/mypage.jsp");
                window.eval("window.open(" + url +")");
            catch (Exception e) {
                e.printStackTrace();
    }It doesn't do anything, instead I'm getting the following output in the trace:
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = false
    liveconnect: JavaScript: UniversalBrowserRead enabled
    liveconnect: JavaScript: UniversalJavaPermission enabled
    liveconnect: JSObject::eval(window.open(http://localhost:29080/mydomain/mypage.jsp))
    liveconnect: the url of the applet is http://localhost:29080 and the permission is = falseI'm testing this code on Linux, FIrefox 1.5.0.3 and JDK1.5.0_07.
    What I'm doing wrong?
    Thanks.
    Stephan

  • Using web.show_document the first time makes new browser window lose focus

    Hi,
    In our application we use show_document(url, '_blank') to open our reports (as pdf) in a new window.
    Our environment is Application Server 10g Release 2 with Forms 10g Release 2 and jinitiator 1.3.1.22.
    The first time I call a report, the new browser window containing the pdf is shown but loses focus after about 1 second. The focus is then returned to the applet window. When calling a report again it always keeps the focus.
    After closing the applet window and restarting the application, the same thing happens: first report called loses focus, all others keep the focus.
    Does anyone have any idea why this is happening? We want the focus to stay on the new browser window every time...

    Hi Jeroen,
    I m also facing a problem something similar to yours. If you got any solution please let me know.
    Problem-
    Currently my application is running on Forms 9.0.4.2 and my form calls another third party which displays the image in image viewer in new browser. When user clicks on the button to display image, then I m using the following Code -
    -- Method: displayDocuments ([Ljava/lang/String;)Ljava/lang/String;
    FUNCTION displayDocuments(
    obj ORA_JAVA.JOBJECT,
    a0 ORA_JAVA.JARRAY) RETURN VARCHAR2 IS
    BEGIN
    args := JNI.CREATE_ARG_LIST(1);
    JNI.ADD_OBJECT_ARG(args, a0, '[Ljava/lang/String;');
    RETURN JNI.CALL_STRING_METHOD(FALSE, obj, 'com/hli/imaging/adapter/LK_FormsImagingAdapter', 'displayDocuments', '([Ljava/lang/String;)Ljava/lang/String;', args);
    END;
    Image is displaying fine but the focus is staying on the newly opened browser. I want it to get back the focus to the forms window.Is this possible ???
    Thanks in advance
    Sai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to make firefox open a URL in a PDF document which is loaded using Adobe PDF viewer in firefox to always in a new browser window ?

    Hi
    I have a web application which would enable users to see a list of PDF document on the web page and when the user select the PDF document, it will be open by a adobe PDF viewer.
    Within the content of the PDF document, it will contact URL links to some other portal web pages which we would like these other web pages to be open in a new browser window, but our testing shows that the new web pages may not always open in a new browser window.
    Could you help to advise how I can enforce that new web pages that are clicked from the PDF document can always be open in a new firefox browser window ?
    Thanks in advance.
    Regards
    Sen Lee

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Title in new browser window

    Hello,
    I wonder if someone can reproduce that one.
    I'm using this code to open a new browser window
    <af:commandMenuItem text="blabla" useWindow="true" action="add"
    id="dialogTrigger" windowWidth="800" windowHeight="600" />In that new window, the jspx page includes a template.
    Here is the starting code of that page:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:trh="http://myfaces.apache.org/trinidad/html"
              xmlns:tr="http://myfaces.apache.org/trinidad">
        <jsp:directive.page contentType="text/html;"/>
      <f:view>
        <af:document title="blabla">
          <af:messages/>
          <af:form>
            <af:pageTemplate viewId="/WEB-INF/templates/popup.jspx">
    ...Every tag is closed at the end (double checked).
    The new browser window has for title "http://127.0.0.1:8988/app/index.jspx - Mozilla Firefox" but I think it should have "blabla - Mozilla Firefox".
    Correct me if I'm wrong?
    Also, the resulting HTML does not seem to be valid as an orphan closing tag </head> is found just after the opening <html> tag...

    Which tag library is referenced by your "afh" ?
    I can't see it in jdeveloper 11 ...
    According to the reference documentation for tag <af:document />:
    The UnifiedDocument creates each of the standard root elements of an HTML page: <html>, <body>, and <head>, but by abstracting away from those components, can be used in non-HTML pages as well. ...
    title
    String
    Yes
    the title of the document. (This title doesn't have to match the title on any contained panelPage. More on that:
    The generated HTML has a frameset included that points to the real page. Inside "onload" event, that frameset has a call to fixDialogTitle(). The embedded html page has the <title> defined by the <af:document title="fds">, so this works fine... so I guess the fixDialogTitle() function has to transfer the title from that embedded page to the parent one ?
    Message was edited by:
    Jean-Philippe Melanson

  • New browser window with javascript

    Hello,
    I'm trying to accomplish something similar to what has been
    discussed in other threads (Jess Learnin, 9/30/2008, and another
    thread from back in '07). I've tried the advice given in these
    threads and have had no luck. I would like to create a button to
    call a new browser window that displays a URL of my choosing. I'd
    like to specify the size and attributes of the new window. I've
    created a small dummy tutorial in order to work on this feature.
    I'm using the "Execute Javascript" option when configuring
    the button. I include the following javascript:
    window.open('
    http://lib.berkeley.edu/BIOS/index.html',
    'myWindow','height=400, width=700, toolbar=no');
    I have the Captivate button context set to "Current". I have
    deselected "Continue Playing Project" (though I've tried it with
    that option selected as well).
    I've tried prefacing the script w/
    "javascript:window.open...", but no luck.
    I'm testing the file on a development server, rather than
    from a local copy. When I test in Firefox, my movie simply stops
    when I click the button, without opening a new window or loading a
    web page. When I test in IE7, the movie stops and I get a message,
    "Error on page"; still no new window.
    I do notice that I'm currently running Flash Player 10. I'm
    using Captivate 3. When I publish my file, my options only go up to
    Flash Player 9, which is what I have chosen. I don't know if this
    would make a difference.
    I have also tried altering the standard.js file in the manner
    that jbradley88 suggested in the 9/30/08 thread, and using the
    corresponding javascript in the button properties window, with
    similar unsuccessful results.
    I have tried running the movie on a different computer, in
    case some local setting was somehow mucking things up. I get
    nothing.
    Any suggestions? If anyone's willing to take a look, I can
    send along my small dummy .cp file that I've been working on.
    Thanks in advance.
    -Kelly

    Hi John,
    Here's the exact javascript that I currently have associated
    with the button:
    void(window.open('
    http://lib.berkeley.edu/BIOS/index.html',
    'myWindow','height=400, width=700, toolbar=no'));
    I've tried multiple permutations, including placing
    "javascript:" in front of the script, both with and without the
    void().
    The message in IE7 just says "Error on page". It's not a
    pop-up message; it's just the small message that appears at the
    bottom left of the browser window in IE7 when a page fails to load
    properly. The message doesn't appear until I click on the button
    that's supposed to call the javascript. There's a yellow
    exclamation point icon that appears next to the "Error on page"
    message. When I click on that I get:
    "Problems with this Web page might prevent it from being
    displayed properly or functioning properly. In the future, you can
    display this message by double-clicking the warning icon displayed
    in the status bar."
    It also displays a pointer to the error:
    Line: 1
    Char: 111
    Error: Syntax error
    Code: 0
    URL:
    http://library11.berkeley.edu/bios/kelly/Practice_demo.htm
    I looked at the source for the page as displayed by IE7 (have
    also looked at the .htm and .js files generated by Captivate) and
    haven't seen anything obvious, but I'm somewhat unschooled in such
    matters.
    If it would help to see what it does, you can view the demo
    at the URL above.
    Thx again,
    Kelly

  • New browser window problem

    I have many links on one page of my site that open in a new window. After clicking on an image that is in the middle of a page to open a new browser window, when returmning to the original page it has scrolled back up to the top of that page again.
    Is there any way of ensuring that the orginal page stays in the place where you left it when returning from a new browser window?
    See link:
    http://www.nigelhewitt.com.au/_links/MainMenuLinks/CurrentArtwork.htm#
    See, for example, if you click on even the second image down and then press close window, that the original page has scrolled back to the top.
    Please help!

    Your behavior is improperly applied directly to the <img> tag.  It SHOULD have been applied to the anchor tag that surrounds the image.  In addition, the symptoms you report are caused by your use of the octothorpe to create the 'null link'.  In general, behaviors should never be applied directly to image tags.  So, change this -
    <a href="#"><img src="../../_images/Transience- small.jpg" alt="Transience" width="350" height="321" border="0" onClick="MM_openBrWindow('../EnlargedImages/Transience.htm','CurrentImages','scrollbars=yes,resiza ble=yes,width=1000,height=800')"></a>
        to this -
    <a href="#" onClick="MM_openBrWindow('../EnlargedImages/Transience.htm','CurrentImages','scrollbars=yes,resiza ble=yes,width=1000,height=800')"><img src="../../_images/Transience- small.jpg" alt="Transience" width="350" height="321" border="0" ></a>
    Next, to get around the use of the octothorpe for the null link, you have to kill the link completely 'onclick' by adding 'return false' to the behavior call, like this -
    <a href="#" onClick="MM_openBrWindow('../EnlargedImages/Transience.htm','CurrentImages','scrollbars=yes,resiza ble=yes,width=1000,height=800');return false"><img src="../../_images/Transience- small.jpg" alt="Transience" width="350" height="321" border="0" ></a>
    Finally, to give yourself a hedge against someone coming to your site with javascript disabled (in which case your open browser window will no longer work), copy the popup's filename to the link to replace the octothorpe, like this -
    <a href="'../EnlargedImages/Transience.htm" onClick="MM_openBrWindow('../EnlargedImages/Transience.htm','CurrentImages','scrollbars=yes,resiza ble=yes,width=1000,height=800')"><img src="../../_images/Transience- small.jpg" alt="Transience" width="350" height="321" border="0" ></a>
    Now you're all set.
    You can find a DW extension to do this dirty work for you by searching the Adobe exchange for "Smart Link" by David Powers.

  • How to force external links to open in new browser window/tab?

    Greetings. I'm here because searching elsewhere kept coming up with references to javascript. I've created an interactive PDF with both internal and external links. It works just fine when viewed in either Acrobat or Reader. However, it is being downloaded to users' browsers and when they access the external URLs, the new sites replace the existing page in the same window.
    Is there a simple way for me to include an action in the PDF prior to distribution that will force it to open external URLs in a new browser window or tab?
    And for the record, I barely know how to spell Javascript, much less how to write or implement it. So if there is a simple solution, I hope you can also help walk me through the steps to implement it.
    Thanks a ton.

    There are two issues here:
    - How to do it using JS
    - How to do it in a non-Adobe browser plugin
    The first is pretty straight forward. You use a code like this, replacing the dummy URL with your own:
    app.launchURL("http://www.example.com", true);
    The second issue is more problematic, and in fact there isn't really a solution to it. If the plugin used supports this method then it will work, if not, then you're out of luck. Unfortunately, outside of the Adobe software I don't think that any other plugin supports it.

  • Open links in new browser window

    We are using Oracle WCI 10.3/Collaboration 10.3 and have a Community Links Portlet (collab portlet) setup. The links open up in the same browser window and to get back to the portal, the user has to hit the back button on the browser. So,
    1) Is there a portal/collaboration configuration that enables links to open up in a new browser window?
    2) Is there a way to hide the address bar when the link opens up in a new window? (the reason for this question is, we may have a link to some applications where we don't want the user going in directly. So, by hiding the address bar, they can't copy the URL and access directly without going in through the portal).
    If there is any better way to do question 2 above, would appreciate the feedback.
    Thanks.

    I was able to figure this out:
    1) In the My Account section, under display preferences, there is an option to "open documents in same window" or "new window". By changing this, links in the Community Links portlet open up in a new browser window.
    2) With a simple javascript example that I found on the internet, I was able to customize the popup browser window with no address bar or menu buttons.
    Edited by: user1301820136 on Jun 26, 2009 9:59 AM

Maybe you are looking for

  • Old MacBook showed up on iMessage

    I recently have changed my Apple ID password so I was logging in on my current devices (Mac Pro, iPhone, and iPad). I recently sold an old mid 2010 white MacBook to a store. Before doing so, I was sure to boot from the Snow Leopard CD, use the Disk U

  • Unable to format or restore - 160GB Classic

    Hello. I currently have an issue with an 160GB iPod classic as it won't restore or even reformat now, and the iPod is completely blank In the usual mode, the iPod freezes iTunes straight away and also freezes My Computer when I try to click on the iP

  • I got problem to restore my iPod

    Hello everyone...I need your help....My iPod (iPod color display 20GB)could not be restored even when I have already used the latest version of the software. There is always `The iPod `iPod` could not be restored. An unknown error occured (1418)` pop

  • Can't purchase or update anything

    When I try and purchase a song off my pc, ihpones, or itouch it lets me put in my password like normal and then I get an error message "an unknown error has occurred (5002) There was an error in the itunes store. Please try again later" Checked all m

  • Does Adobe plan to release a 64 bit version of the Authorware Web Player?

    I know that Adobe has no plans to continue development of Authorware 7. However, as a service to their loyal customers who have purchased Authorware along with many other Adobe products, it does not seem like a daunting task to convert the 32 bit ver