Images in a popup window

Hi,
I have some difficulty displaying images in a popup window. The (Tomcat 5.5) server apparently sends them with a content type of utf-8 text, which leads to an exception page shown in the popup window instead of the picture.
In web.xml I checked the mime-mapping for the images:
     <mime-mapping>
          <extension>jpg</extension>
          <mime-type>image/jpeg</mime-type>
     </mime-mapping>
etc.
The html part is this:
<a href="# onclick="window.open('${image.path', '',
'status=no,width=${image.width},height=${image.height}');">Show Picture</a>
How can I get the server to send the images with the proper Content-types? Do I necessarily have to create a separate JSP page for this purpose?
Thanks,
Laszlo Borsos

Thanks for that !
Sadly (probably due to my HTML knowledge or lack of) I'm not
getting very far at all. I've added some skeleton classes to
default.css simply to see if anything changes and it's not :-(. Can
anyone advise what I might be doing wrong here ? - the final goal
is to have normal hyperlinks exactly as they are just now but with
popup links to have a dotted underline instead of a solid
underline.
A.link {
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
A.visited {
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
A.hover {
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
A.popup.link {
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
border-bottom: 1px dotted
A.popup.visited{
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
border-bottom: 1px dotted
A.popup.hover{
font-size: 10pt;
font-family: Arial, sans-serif;
line-height: Normal;
border-bottom: 1px dotted
}

Similar Messages

  • White space/margin around images in onClick popup windows

    Hi. I'm using a JavaScript function that comes with
    dreamweaver so what when users click on thumbnail images, a larger
    window pops up with the image. Here's the function:
    <script type="text/javascript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    //-->
    </script>
    Here's an example of how I'm using it in the code:
    <a href="javascript:;"><img
    src="dr_chm_allrgt_200x281.jpg" width="200" height="281" border="0"
    onclick="MM_openBrWindow('dr_chm_allrgt_400x300.jpg','','width=300,height=400')"
    /></a>
    This works great, except for one thing: the image doesn't
    appear in the very top left-hand corner of the pop-up window --
    there's some white space around it, and the right and bottom edges
    of the image are cut off, because they don't fit in the pop-up
    window. I'm wondering, is there some way around this problem,
    that's less messy than changing the width and height that I'm
    passing to the function every time?
    Thanks

    You are opening an image directly in the browser -
    MM_openBrWindow('dr_chm_allrgt_400x300.jpg'
    In that case, you have no control over how the browser
    displays the image.
    To get control, you would have to open an HTML page that
    contains the image
    instead of opening the image directly.
    There are extensions that will do this for you on the fly -
    the one I use is
    JustSo Picture Window from
    http://www.valleywebdesigns.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "outmatch1" <[email protected]> wrote in
    message
    news:f4j86l$s1o$[email protected]..
    > Hi. I'm using a JavaScript function that comes with
    dreamweaver so what
    > when
    > users click on thumbnail images, a larger window pops up
    with the image.
    > Here's
    > the function:
    > <script type="text/javascript">
    > <!--
    > function MM_openBrWindow(theURL,winName,features) {
    //v2.0
    > window.open(theURL,winName,features);
    > }
    > //-->
    > </script>
    >
    > Here's an example of how I'm using it in the code:
    >
    > <a href="javascript:;"><img
    src="dr_chm_allrgt_200x281.jpg" width="200"
    > height="281" border="0"
    >
    onclick="MM_openBrWindow('dr_chm_allrgt_400x300.jpg','','width=300,height=400')"
    > /></a>
    >
    > This works great, except for one thing: the image
    doesn't appear in the
    > very
    > top left-hand corner of the pop-up window -- there's
    some white space
    > around
    > it, and the right and bottom edges of the image are cut
    off, because they
    > don't
    > fit in the pop-up window. I'm wondering, is there some
    way around this
    > problem,
    > that's less messy than changing the width and height
    that I'm passing to
    > the
    > function every time?
    >
    > Thanks
    >
    >

  • Firefox foes not open links in a popup window using "window.open(this.href..."

    When clicking on a thumbnail image it's supposed to open the same image in a popup window. (i.e. a bigger version of the same image). Firefox displays in the popup box "Not Found
    The requested URL /undefined was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.'' ''However this does work on other browsers? An ideas why this happens? Example [http://motorpride.co.za/inventory.html ]. Click on any car image in the list

    You're welcome
    Middle-clicking work for links on web pages, but also for many menu entries that open a page in the current tab and some toolbar buttons like the Home page and location bar and search bar Go buttons.

  • Need to dynamically include an image file when calling a popup window

    I am working on a web dynpro Java app which uses a button to call a popup window/view. Within the popup, I want to dynamically choose an image to show (from mime types) based on a criteria...there will be multiple buttons on the initial view that all call the same popup, but the popup will have content specific to which button called it (specifically the image embedded in the view).
    My question is, what is the proper/best way to do this?
    Here are some possible ways I can think of...
    1. Pass a parameter from each button during the call of the event, but how does that get sent to the implementation of the second view for use in determining which image? And, how do I modify the source property of the image element based on that parameter?
    2. Create multiple pages and views for each button to call...but this seems decidedly un-DRY.
    3. Saw one posting on how to dynamically create a cached image...I could use different event handlers in the initial view, then load individual images from the mime library at that point...cache it into a hard-coded image name...then just call the identical view every time. Not sure this is even possible...input?
    I don't know specifically how to implement any of these options, or know if there are other/better ways. Any help would be appreciated.

    Just create a context attribute "imageFileName" in the component controller or a custom controller, map this attribute from both views (the one that contains the buttons and the one in the popup window that displays the image).
    Now you can have an separate action for each button or one common action. In the first case just set the "imageFileName" inside the action handler for the specific button. In the second case use an action parameter "buttonId" and a parameter mapping
    button.mappingOfOnAction().setParameter("buttonId", button.getId());
    to determine which button triggered the action. After having checked which button was pressed, set the "imageFileName" accordingly.
    Armin

  • How to make mouseover effect text show image in popup window or tooltip?

    I am trying to display a popup image in a new window when the mouse moves over some text. Or perhaps, the image could display in a tooltip when the mouse moves over some text.
    However, I have achieved the functionality of an image appearing above the text when the mouse moves over some text. This is how I did this:
    I put this code into the Page HTML Header:
    <script type="text/javascript">
    <!--
    function setFirstChildImgDisplay(el,vis) {
    if(!el || !el.getElementsByTagName) return;
    el.getElementsByTagName('img')[0].style.display=vis;
    // -->
    </script>
    I created a region and put this in the Region's Title field:
    {div onmouseover="setFirstChildImgDisplay(this,'inline')"  onmouseout="setFirstChildImgDisplay(this,'none')">Check out Page 1 here <img src="#WORKSPACE_IMAGES#DGNR Preview Page 1.bmp" alt="Page 1 Preview" style="display:none;">{/div}
    I am thinking that I should not have all of this code in the Region's Title field. But, I don't know where else to put it in APEX.
    So my questions are:
    1. how to get an image to display in a popup window or as a tooltip when the mouse is moved over some text?
    2. where should the {div} content be placed in APEX, if not in the Title field?
    Please note that I used '{' & '}' instead of '<' & '>' just so the div would display in this post.
    Also, I would like to give credit to this website because this is where I found out how to do what I have provided above.
    http://forums.devshed.com/web-design-help-2/mouseover-effect-text-shows-image-321876.html
    Thank you in advance,
    Maggie

    It's just an image map. Play with the settings. Here's a shape layer making a hole in the water and adding a bit of color.

  • Image in popup window header

    How to Make a image or icon appear in popup window header?
    I have created a MXML component using TitleWindow.. and i am using it as a pop up..
    How do i set titleIcon for the popup?

    Embed(source='assets/image.png')] 
    private static const iconImg:Class;
    <mx:TitleWindow titleIcon={iconImg}/>
    This solved my issue..
    titleIcon="@Embed(source='assets/image.png')" this gave an error.
    Thanks for the responses..

  • OnMouseOver image to popup window

    I recently upgraded from Dreamweaver 8 to CS3. Previously,
    using behaviors, I was able to have a pop up window appear with a
    larger version of a thumbnail image. I have spent hours (cannot
    remember exactly what I did before) trying to recreate this in
    CS3...no luck. Have searched everything in site and cannot find
    instruction. Following is the page that does work and the code. Can
    you help? Veronica
    http://www.topofthebaypetlodge.com/showdogs.html
    &lt;a href=&quot;javascript:;&quot;
    onmouseover=&quot;MM_showHideLayers('Layer3','','show')&quot;
    onmouseout=&quot;MM_showHideLayers('Layer3','','hide')&quot;&gt;&lt;img
    src=&quot;images/show dogs/1-fairchild-thumb.jpg&quot;
    alt=&quot;Fairchild&quot;
    name=&quot;Fairchild&quot; width=&quot;120&quot;
    height=&quot;120&quot; vspace=&quot;2&quot;
    border=&quot;0&quot; id=&quot;Fairchild&quot;
    /&gt;&lt;/a&gt;&lt;br /&gt;
    &lt;a href=&quot;javascript:;&quot;
    onmouseover=&quot;MM_showHideLayers('Layer4','','show')&quot;
    onmouseout=&quot;MM_showHideLayers('Layer4','','hide')&quot;&gt;&lt;img
    src=&quot;images/show dogs/2-fairchild-thumb.jpg&quot;
    alt=&quot;Fairchild2&quot;
    name=&quot;Fairchild2&quot; width=&quot;120&quot;
    height=&quot;120&quot; vspace=&quot;2&quot;
    border=&quot;0&quot; id=&quot;Fairchild2&quot;
    /&gt;&lt;/a&gt;&lt;br /&gt;

    Don't confuse pop-up menus with popup windows. The behavior
    you want is
    still there - OpenBrowser Window. But Michael's divaPop may
    be a better
    choice -
    http://divaHTML.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "PBGV" <[email protected]> wrote in message
    news:fo7msp$4ii$[email protected]..
    > The page I listed was one I had created in Dreamweaver
    8. Now I am
    > working on
    > a different page in Dreamweaver CS3 and cannot create
    the same effect.
    > When I
    > did the first one, I remember thinking how easy;
    however, cannot remember
    > how I
    > managed to select a thumbnail image and attach behaviors
    to create this
    > same
    > effect. Am thinking something has changed in CS3 and
    notice 'deprecated'
    > in
    > behavior panel with grayed out hide/show pop up menu.
    Can you help or
    > lead me
    > to instructions? Thanks, v
    >

  • How to pass the values from popup window to parent's window

    Hi Experts,
    in my application i need to develop one popup window in that i have created 4 dropdowns and one ok button , if i willl click on that ok  button the values should pass to parent window dropdownlistboxes
    can any body suggest how i will get the popup window values
    thanks in advance,
    ramani.

    Hi Ramani,
    I can provide few inputs on how can we control JSP 2 from JSP1.
    Here is the code. Check if you can convert this to make useful to you. I am not passing values but control.
    here it is:
    JSP 1.
    <h1>Page One</h1>
    <br>
    <a href="/irj/portalapps/<PAR_FILE_NAME>/images/<HTML_PAGE_NAME>.html#part1">part 1</a>
    <br><br><br>
    <a href="/irj/portalapps/<PAR_FILE_NAME>/images/<HTML_PAGE_NAME>#part2">part 2</a>
    <br><br><br>
    <a href="/irj/portalapps/<PAR_FILE_NAME>/images/<HTML_PAGE_NAME>#part3">part 3</a>
    JSP 2.
    <h1>Page Two</h1>
    <br>
    <a name="part1">
    <h3>Part 1</h3>
    </a>
    <a name="part2">
    <h3>Part 2</h3>
    </a>
    <a name="part3">
    <h3>Part 3</h3>
    </a>
    This way you can move from one JSP to other.
    regards
    -Kedar Kulkarni
    reward points if useful.
    Message was edited by:
            Kedar Kulkarni

  • Creating a PDF report within a popup window

    bq. Hi, \\ Within my application i've a page which uses JasperReports to generate a simple PDF report within prerender(): \\ public void prerender() { \\ try { \\ this.planned_bar_tripsDataProvider1.refresh(); \\ if (this.planned_bar_tripsDataProvider1.cursorFirst()) { \\ getApplicationBean1().*jasperReport* \\ ("PlannedBarTripsReport", "application/pdf", \\ getSessionBean1().getPlanned_bar_tripsRowSet1(), null); \\ } \\ } catch (Exception ex) { \\ log("Exception generating report", ex);} \\ } \\ jasperReport() is taken from the Sun PDF tutorial (http://developers.sun.com/jscreator/learning/tutorials/2/reports.html) \\ Now, when this page is opened within the application (browser) window the PDF report successfully renders. \\ However, when the page is opened within a popup window, using the (onclick) Javascript function: \\ function generateReport() { \\ window.open('PlannedBarTripsReport.jsp') ; \\ window.event.returnValue = false; \\ } \\ the PDF report fails to render. The result is a brief pause followed by a blank popup. No exception. No Abobe embedded window. No clues as to what's gone wrong. \\ Any advice would be greatly appreciated. \\ Ta.

    Hi Venkatv and everyone.
    This is the link where I found about Including Dynamic Images in a Report.
    http://www.oracle.com/technetwork/testcontent/apexprnt2-otn-098981.html
    It's so easy and clear to do.
    Good Luck!!!
    Regards.
    Ayrem

  • How to show Popup window in OAF on click of a button

    How to show Popup window in OAF on click of a button (Without using Javascript)
    1. I have one OAF page on which i should have button Called "Next"
    2. On clicking of this button a new window/page should be displayed with the image stored in database. on clicking on this "Next" button again next image from the database should be displayed on the newly opened window/page.
    3. Is it possible to configure OAF to render window_II in the opposite screen of window_I where the OAF client resides? (If the OAF-client resides in screen_I render window with image in screen_II). That is, at the first click on the Next-button, window_II appers on screen_II and not some random location. The user will have 2 screen/monitors on his work place.
    4. Given that the two windows reside on each screen, is it possible to make OAF remember the position of window_II ? The goal of this is to force the window to pop up on the same location on the same screen next time the Next-button is pressed.
    5. If window_II is closed (eg. by using X) and the Next-button in window_I is pressed again, will window_II pop up in the same location and screen as previously ?
    6. Is it possible to have a Print-button in window_I what prints the scanned picture in window_II ? Is it possible to have the click on this Print-button to open the standard print dialog on top of window_II ? Could the button be placed in window_II as well, having the same functionality ?

    I have tried to open home page window. You can change the URL according to your requirement.
    import oracle.apps.fnd.framework.webui.OAUrl;
    StringBuffer l_buffer = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    String url = "/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGE"; // Calling Oracle Home Page
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    Above code will open the new page in new window.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Windows 7 on MacBook Pro Retina late 2013. Showing popup window as "Windows detected a hard disk problem"

    I have installed Windows 7 64 bit version in my MacBook Pro Retina(13") late 2013 model . It was working fine from last 8 months but recently popup window showing as "Windows detected a hard disk problem" once login. Please check the following image.
    I have contacted Apple Support team. They have tested the hard disk while booting from Mac OS and all the reports showing as hard disk is fine. Then I thought might be it was some virus and removed the Bootcamp partition and re-installed Windows 7 Operating System. But once updated Windows 7 with latest updates. This message showing again.
    Would you please help me out to fix this issue. Anybody faced similar issue?

    No I think that all drive are really on failure
    I've boot with an ubuntu livecd and smartmontools see also the failure.
    ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
      1 Raw_Read_Error_Rate     0x001a   200   200   000    Old_age   Always       -       0
      5 Reallocated_Sector_Ct   0x0033   100   100   000    Pre-fail  Always       -       0
      9 Power_On_Hours          0x0032   099   099   000    Old_age   Always       -       1872
    12 Power_Cycle_Count       0x0032   099   099   000    Old_age   Always       -       762
    169 Unknown_Attribute       0x0013   253   253   010    Pre-fail  Always       -       4003597393408
    173 Unknown_Attribute       0x0036   100   100   100    Old_age   Always   FAILING_NOW 12124890467160
    174 Unknown_Attribute       0x0022   099   099   000    Old_age   Always       -       7469954
    175 Program_Fail_Count_Chip 0x0022   099   099   000    Old_age   Always       -       4989854
    192 Power-Off_Retract_Count 0x0012   099   099   000    Old_age   Always       -       31
    194 Temperature_Celsius     0x0022   064   064   000    Old_age   Always       -       36 (Min/Max 11/75)
    197 Current_Pending_Sector  0x0022   100   100   000    Old_age   Always       -       0
    199 UDMA_CRC_Error_Count    0x001a   200   199   000    Old_age   Always       -       0
    240 Unknown_SSD_Attribute   0x0022   100   100   000    Old_age   Always       -       0
    When I use the Mac disk tools from the startup menu, it see also the problem.
    Now the big question is : Why I've this type of issue with 2 MBA and 1 Macbook pro 15".
    Their configurations are the same : windows 7 with truecrypt.
    Maybe Windows drastically reduces the lifetime of the Apple SSD drive.
    The 3 Mac are used for less than 6 month !!!!

  • Menu and sub menus are showing in the popup window

    Hi,
    We have seach PG, summary and Detail PG.
    When we clicked on summary page link, detail page is opening in popup window.
    JavaScript is used for this and toolbar=no,menubar=no used .
    Still menus are showing below Oracle Branding image.
    How to hide these?
    Thanks
    JP

    hello, what do you see instead? please note that at the moment firefox hello also won't work when you've set up the browser to run in permanent private browsing mode ("never remember history" in the options > privacy panel).
    [[Settings for privacy, browsing history and do-not-track]]

  • Unable to Pass Parameters to Custom PopUp Window ??

    Hi
    Please help in passing Data from an MXML  file to my POPUp window mxml
    MainMXML File :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" horizontalAlign="left" verticalAlign="middle">
        <mx:Script>
            <![CDATA[
                import mx.events.FlexMouseEvent;
                import MyPopUpWindow;
                import mx.events.FlexEvent;
                import mx.managers.PopUpManager;
                private var popup:MyPopUpWindow;
                private function openPopUpWindow():void {
                    popup = PopUpManager.createPopUp(this,MyPopUpWindow,true) as MyPopUpWindow;
                    PopUpManager.centerPopUp(popup);
            ]]>
        </mx:Script>
        <mx:Canvas width="288" height="177">
           <mx:HBox id="jai">
            <mx:Image source="images/canvas.png" visible="true" height="100%" width="100%"/>
            <mx:Label id="kkk" text="Ravi"/>
            <mx:Button label="Edit" click="openPopUpWindow()"/>
        </mx:HBox>
        </mx:Canvas>   
    </mx:Application>
    =======
    MyPopuWindow.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <!-- custom popup window component - comps/MyPopUpWindow.mxml -->
    <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            title="My Custom PopUp Window"
            showCloseButton="true"
            close="PopUpManager.removePopUp(this)">
            <mx:Script>
                <![CDATA[
                    import mx.managers.PopUpManager;
                ]]>
            </mx:Script>
            <mx:Form>
                <mx:FormHeading label="User"/>
                <mx:FormItem label="Username">
                    <mx:TextInput id="un" />
                </mx:FormItem>
            </mx:Form>
    </mx:TitleWindow>
    On to the TextInput i need to have the value of Label kkk value . I tried with inline  binding but it didn't worked
    <mx:TextInput id="un"  text= {kkk.text}/> isn't working . please help

    Thanks for the idea, I did this way . Its working but worried as what happens if its not present inside Main Appliction.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" horizontalAlign="left" verticalAlign="middle">
        <mx:Script>
            <![CDATA[
                import mx.events.FlexMouseEvent;
                import MyPopUpWindow;
                import mx.events.FlexEvent;
                import mx.managers.PopUpManager;
                private var popup:MyPopUpWindow;
                [Bindable]
                public var str:String ;
                private function openPopUpWindow():void {
                    popup = PopUpManager.createPopUp(this,MyPopUpWindow,true) as MyPopUpWindow;
                    str = kkk.text;
                    PopUpManager.centerPopUp(popup);
            ]]>
        </mx:Script>
        <mx:Canvas width="288" height="177">
           <mx:HBox id="jai">
            <mx:Image source="images/canvas.png" visible="true" height="100%" width="100%"/>
            <mx:Label id="kkk"  text="Pavan"/>
            <mx:Button label="Edit" click="openPopUpWindow()"/>
        </mx:HBox>
        </mx:Canvas>   
    </mx:Application>
    ========
    <?xml version="1.0" encoding="utf-8"?>
    <!-- custom popup window component - comps/MyPopUpWindow.mxml -->
    <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            title="My Custom PopUp Window"
            showCloseButton="true"
            close="PopUpManager.removePopUp(this)">
            <mx:Script>
                <![CDATA[
                    import mx.core.Application;
                    import mx.managers.PopUpManager;
                ]]>
            </mx:Script>
            <mx:Form>
                <mx:FormHeading label="User"/>
                <mx:FormItem label="Username">
                    <mx:TextInput id="un" text="{Application.application.str}"/>
                </mx:FormItem>
            </mx:Form>
    </mx:TitleWindow>
    please sugest correct approach .

  • Blocking popup windows even when disabling the popup blocker

    For quite some time now, Firefox has been blocking essential popup windows on my computer. It's not just those annoying ones, even those when I am trying to write an email and similar things. I have disabled the popup blocker and it does not change anything at all. It does not alert me that it has blocked anything either, it is simply as if I never clicked anything in the first place. I have tried adding exceptions to my popup blocker, and this does not work either. This is really frustrating and is interfering with my daily use of firefox, and forces me to use crappy explorer which does not block things. What can I do?

    Hi Sachin
    Thank you so much for the reply.
    About your request, the codes that I used are:
    HTML for the PopUp:
    <SCRIPT LANGUAGE="JavaScript">
    function popUp(URL) {
    var iMyWidth;
    var iMyHeight;
    //half the screen width minus half the new window width (plus 5 pixel borders).
    iMyWidth = (window.screen.width/2) - (250 + 10);
    //half the screen height minus half the new window height (plus title and status bars).
    iMyHeight = (window.screen.height/2) - (225 + 50);
    //Open the window.
    var win2 = window.open("http://xarao.businesscatalyst.com/caipiroska.html","Window2","status=no,height=450,width=500,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
    win2.focus();
    </SCRIPT>
    For the Link:
    javascript:popUp('http://xarao.businesscatalyst.com/caipiroska.html')
    Of course for all the different links in the page I've changed the http of each image in both codes.
    http://xarao.businesscatalyst.com/cocktails.html
    Thank you once more.
    Best regards,
    Augusto

  • Selecting "Information" gives Quicktime popup window. What's wrong?

    I am using a freshly installed copy of Pages (from App Store) on a MacBook Pro 13" (2011). The first operation after startup already fails. When I select "Information" (via icon or menu) I get the popup window belonging to Quicktime featuring (translated from German) "Start/Stop", "Title image", "Repeat", "Volume", and "Control", but no facilities to set the page format.
    What can I do to make the software useable?
    Ulrich

    Why are you using a script to load the movie? Why not just
    embed it in the
    page 'normally' like you have on the other popups? But do it
    properly so
    they will play in IE6. They do play in Firefox, though. All
    except the "24"
    one.
    You are calling this script:
    http://www.myhappypeople.com/Guilllermo/Pages/InsertMovie.js
    But it is not there.
    BTW: the main image on
    http://myhappypeople.com/ is
    also missing.
    http://myhappypeople.com/Collage_01b.jpg
    not there.

Maybe you are looking for

  • IPhoto thinks I'm trying to access photos on an external HD.....I'm not!

    This has happened several times... Some of the photos in my library are kept on an external drive, and when I'm not connected to that drive, but AM NOT TRYING TO ACCESS THE PHOTOS ON THAT DRIVE (I'm simply accessing the ones on my computer's HD), it

  • Outlook 2010 Crashes After Opening During Send/Receive with a c0000005 Exception Code

    Ok, I'm stumped!  As soon as the user opens and loads Outlook, when it starts to do the send/receive, Outlook crashes.  Here's a list of what I have tried along with the details that Windows provided: Problem signature:   Problem Event Name:         

  • Empty lines getting inserted while copying File data as chunks

    When I try to copy data from one file to other, Extra lines are getting inserted into the copied data. I am actually reading chunks of data from the first file and writing it to the other by using 'Byte' count to read. Whenever the no. of bytes read

  • CS-MARS: Report of inactive reporting devices?

    Hi, Is there a report or a way to create a report in CS-MARS(5.3.3), to list the actual inactive reporting devices. The report I found list only a graph with the amounth of inactive devices in time. I like to see a list with devicenames (or IP addres

  • Importing Songs on Zen Mi

    I used to be able to import songs. But now, all it says is "failed". It used to do this from time to time, but I would either restart the computer or plug it back into the USB cord and it would then most of the time, work fine. Im not sure what's wro