PHP pop up window

Hi there.
I have a site in PHP and MySql. I made a table in a dynamic
page that presents the products that i have in a database.
But it just presents the reference and the respective small
photo. By clicking the photo a pop up window should be open
containing the description and the rest of the photos for that
product. And more, the number of photos obviously vary from product
to product. How can i do this?
I'm new to all this, and this is killing me :)
Can you help me with my task? Thank you a lot ;)

#Make a new profile as described at [[Managing profiles]].
#Do a clean reinstall as descrbied [http://support.mozilla.com/en-US/kb/Basic+Troubleshooting#Clean_reinstall here].
If the issue still happens:
*Download and run every program at these malware removal links: http://www.safer-networking.org , http://www.malwarebytes.org , http://www.spywareterminator.com , http://www.microsoft.com/security/malwareremove/default.aspx
* Repeat steps 1 and 2.

Similar Messages

  • How can I shut off all of the pop-up windows for all the Firefox updates?

    How can I shut off all of the pop-up windows for all the Firefox and Thunderbird updates?
    Apparently now Mozilla creates new versions of their browser and email apps every two weeks instead of just creating updates... I'm tired of all of the pop-up requests for these constant installation requests and all the problems that the new version installations create... I just want to use the software and be left alone.
    I can't find a way to make Firefox and Thunderbird stop with the pop-up requests for new installations... is there a way to do this or has Mozilla just got it rigged so one can't just use the software without re-installing a new version every two weeks and running in to new plugin issues and missing features every time?
    Help!
    Thanks,
    numetro

    Is it possible that her computer is infected with malware.
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to Pass Variables from One Application to Another Pop Up Window

    Hi,
    I am wondering if anyone on the list has tried calling up a
    pop up manager, and have two other variables imported for secondary
    usage. I have tried using [Bindable], but this does not seem to be
    working, and I am still getting errors that tells me that the
    variables are "not defined" when it gets passed to another
    HTTPService. I tried embedding the Pop Up Manager in the same
    application as the one that is supposed to "pass the variables,"
    but it no longer acts as a pop up window.
    Could anyone please tell me where I can find the answers for
    this?
    Thanks in advance.
    Here is the code of what I have for my pop up manager:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    title="New Scenario"
    showCloseButton="true"
    width="325"
    height="145" horizontalScrollPolicy="off"
    close="titleWindow_close(event);">
    <mx:Script>
    <![CDATA[
    import mx.events.CloseEvent;
    import mx.managers.PopUpManager;
    import mx.controls.Alert;
    [Bindable]public var message:String;
    [Bindable]public var message2:String;
    private function titleWindow_close(evt:CloseEvent):void {
    PopUpManager.removePopUp(this);
    private function submit_click():void {
    Alert.show(scenario_name.text, "Alert");
    new_scenario.send();
    PopUpManager.removePopUp(this);
    var win:Hello = PopUpManager.createPopUp(this,Hello, true)
    as Hello;
    PopUpManager.centerPopUp(win);
    private function reset_click():void {
    scenario_name.text = "";
    ]]>
    </mx:Script>
    <mx:HTTPService id="new_scenario" method="POST" url="
    http://localhost/simulator/scenario.php"
    useProxy="false">
    <mx:request xmlns="">
    <scenario_name>{scenario_name.text}</scenario_name>
    <message>{message}</message>
    <message2>{message2}</message2>
    </mx:request>
    </mx:HTTPService>
    <mx:Form>
    <mx:FormItem label="Scenario Name:">
    <mx:TextInput id="scenario_name"
    text=""
    maxChars="45" />
    </mx:FormItem>
    </mx:Form>
    <mx:ControlBar horizontalAlign="right">
    <mx:Button id="submit"
    label="Submit"
    click="submit_click();" />
    <mx:Button id="reset"
    label="Reset"
    click="reset_click();" />
    </mx:ControlBar>
    </mx:TitleWindow>

    Hi,
    I am trying to display some data on the Child window that
    would need to take the data from the parent titleWindow, which
    could be drop down menus, text labels or combo boxes. I would need
    to use a HTTPService on the child dialog box to accomplish task I
    think, but the problem is, how would I get the information from its
    parent window? The example I have are all about how the text input
    from the child window gets feed back to the parent.
    Would I need to create a "reverse" declaration or something
    so I can access the information from the parent in the child
    window?
    I hope this makes sense.
    Thanks for your help.
    Alice

  • Refining JS script to control a pop up window

    After much frustration... I have a working popup window to display small images. The script thanks to WEB DESIGN GARAGE by Marc Campbell is simple enough, he has me paste this in the body:
    <script language="JavaScript">   function doPopup(popupPath) {     window.open(popupPath,'name',       'width=400,height=200,scrollbars=YES');   } </script>
    And I call the popup window with:
    <a href="javascript:doPopup('..//obituary1');">Obituary1</a>
    that I insert in my text at the appropriate place. Adding more (renaming my file and text) as I need them.
    But.. one of the issues evidently with popup windows is that they sink. Clicking on a second one puts them all behind the main window.. So.. Marc includes some code to prevent this. and he writes
    To do this, add the onLoad event to the body tag of the popup  window's HTML file:
    <body onLoad="window.focus();">
        Now where and how do I place this, in my head section... the body section... before or after my popup script... or append it to the link part... Everyplace I place it I get... a yellow highlight in DW implying this will not work.. (it doesn't) or if I stick it where I do not get a yellow alert it does not work either.. and has broken my popup script.
    My testing site.. http://www.test.lsvs.ca/obituaries2.php
    Thanks for any insight / help
    Ralph

    Your pop-up windows look fine to me, but the onLoad code goes in your body tag:
    <script type="text/javascript" src="http://127.0.0.1:37935/xpopup.js"></script></head>
    <body onLoad="window.focus();">
    <p>
    <script language="JavaScript">
      function doPopup(popupPath) {
        window.open(popupPath,'name',
          'width=960,height=625,scrollbars=no,location=no,status=no');
    </script>

  • Allowed Pop Up Windows are Blank

    i've only recently encountered this problem in the past month. the sites i know are affected are fanfiction.net and scribophile.com.
    fanfiction.net is using a javascript;; for editing a link in one's profile.
    scribophile.com is using a php to send a private message: http://www.scribophile.com/dashboard/popups/addprivatemessage.php?userid=17380
    in both instances, a new-fangled looking white window pops up. (the fanfiction.net one even resizes itself and has a fancy top border). they are blank, utterly without content. they have a close X in the top corner that does close them. the php one is even blank when i choose to open it in a new tab like a regular page.
    i have adblock plus and noscript. although i have tried turning them off for these particular web sites, the pop up windows still come out blank.
    i have tried these solutions:
    1: disable adblock plus and tell noscript to allow everything on the page(s). this does not work.
    2: run firefox in safe mode. the popup windows then DO work.
    3: i have gone to the firefox options and created exceptions to pop-up blocking for both sites. no joy.
    4: i have gone into the add-on manager and disabled both adblock plus and noscript (but not other add-ons). no joy.
    5: i have, one at a time, disabled every other add-on i have. no joy.
    it appears to me that it is not actually the add-ons that are causing this behavior. although the windows work in firefox in safe mode, the same cannot be said of manually turning off the add-ons in "unsafe" mode.
    is anything else going on in firefox that might be causing this behavior? i don't think it's the pop-up blocker, since the pop-ups DO appear... but no content inside. ugh.

    # 1: disable adblock plus and tell noscript to allow everything on the page(s). this does not work.
    # 2: run firefox in safe mode. the popup windows then DO work.
    # 3: i have gone to the firefox options and created exceptions to pop-up blocking for both sites. no joy.
    # 4: i have gone into the add-on manager and disabled both adblock plus and noscript (but not other add-ons). no joy.
    # 5: i have, one at a time, disabled every other add-on i have. no joy.
    (who killed my neat formatting?)

  • Opening Centered Pop-up window with Dynamic URL

    I got some code for a centered pop-up window in Flash from a
    Kirupa tutorial. It works well, except that you are supposed to put
    an actual URL for the 'address' variable. I'm using a dynamic URL
    (+url[p]+) for my URL. When I put address = "'+url[p]'"; for the
    address, it doesn't work.
    Here's the code for the button:
    on (release) {
    //customize the window that gets opened
    // 0 equals NO.
    // 1 equals YES.
    address = "'+url[p]+'";
    target_winName = "FlashDevelopment";
    width = 700;
    height = 400;
    toolbar = 0;
    location = 0;
    directories = 0;
    status = 1;
    menubar = 0;
    scrollbars = 1;
    resizable = 1;
    //sends data back to the function
    openWinCentre(address, target_winName, width, height,
    toolbar, location, directories, status, menubar, scrollbars,
    resizable);
    And here's the function:
    // New Window Function
    _root.openWinCentre = function (url, winName, w, h, toolbar,
    location, directories, status, menubar, scrollbars, resizable) {
    getURL ("javascript:var myWin; if(!myWin ||
    myWin.closed){myWin = window.open('" + url + "','" + winName +
    "','" + "width=" + w + ",height=" + h + ",toolbar=" + toolbar +
    ",location=" + location + ",directories=" + directories +
    ",status=" + status + ",menubar=" + menubar + ",scrollbars=" +
    scrollbars + ",resizable=" + resizable +
    ",top='+((screen.height/2)-(" + h/2 +
    "))+',left='+((screen.width/2)-(" + w/2 + "))+'" +
    "')}else{myWin.focus();};void(0);");
    Any idea why my dynamic url is not being recognized?

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How do I get rid of an authentication pop up window permantly

    I have a pop up an authentication pop up window for something called http://www.baracksbirdaycards.com that will not go away. It keeps popping up & when it does it stops me from what I am doing. No matter how many times I click the red X or cancel it comes right back. Can you tell me how to get rid of it.
    == This happened ==
    Every time Firefox opened
    == August 2, 2010

    Do a thorough malware scan.
    Install, update and run these programs <u>in this order</u>. They are all free for personal use, but some have limited functionality in the "free mode", but those are features you really don't need to find and remove the problem that you have. (<u>'''Not all programs detect the same Malware.'''</u>)
    Malwarebytes' Anti-Malware - http://www.malwarebytes.org/mbam.php
    SuperAntispyware - http://www.superantispyware.com/
    AdAware - http://www.lavasoftusa.com/software/adaware/
    Spybot Search & Destroy - http://www.safer-networking.org/en/index.html
    Windows Defender - http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    Dr. Web Cureit - http://www.freedrweb.com/cureit/
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help:
    http://bleepingcomputer.com
    http://www.spywareinfoforum.com/
    http://www.spywarewarrior.com/index.php
    http://forum.aumha.org/
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.~~red:18~~; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 or higher; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html
    <u>'''Install/Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. 8.2.3; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ~~blue:''<u>You may be able to update from the Adobe Reader installed on your system</u>''~~ instead of going to the Adobe site and downloading. Start > Program Files, find and click Adobe Reader to open, click Help, click Check for Updates. Allow the download/update to occur. If you use this method, no need to proceed with the instructions below, <u>'''but'''</u> do look at the two bulleted items at the bottom "'''<u>NOTE for IE:</u>'''" and "Also see:". Restart Firefox and check your new version here: http://www.mozilla.com/en-US/plugincheck/
    ~~blue:''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''~~
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • Current URL in a Pop Up Window

    All right, I need help!
    I have this page called Contact.asp. A hyperlink named
    Feedback is on that page. When you click on Feedback, it opens a
    Pop Up window named Feedback.asp.
    How do I display the URL, which would be
    www.somesite.com/contact.asp in a text field of the form on the Pop
    Up window (Feedback.asp)?

    Not sure I understand correctly.
    You could just type the name in like this:
    <input name="URL" type="text"
    value="www.somesite.com/contact.asp">
    OR use the "HTTP_REFERER"
    <?php echo $_SERVER["HTTP_REFERER"]; ?>
    Not sure what you need?
    Cheers
    "Brachole" <[email protected]> wrote in
    message
    news:felgo7$rfj$[email protected]..
    > All right, I need help!
    >
    > I have this page called Contact.asp. A hyperlink named
    Feedback is on that
    > page. When you click on Feedback, it opens a Pop Up
    window named
    > Feedback.asp.
    >
    > How do I display the URL, which would be
    www.somesite.com/contact.asp in a
    > text field of the form on the Pop Up window
    (Feedback.asp)?
    >
    >
    >
    > Here's the script on Home.asp:
    >
    > <script>
    > function openApp(){
    > var popurl="
    http://www.somesite.com/Feedback.asp"
    >
    winpops=window.open(popurl,"","width=615,height=550,scrollbars,")
    > }
    > </script>
    >
    > <a href="javascript:openApp()">Feedback</a>
    >
    >
    > Here's the html form on Feedback.asp
    >
    > <form name="form1" method="POST"
    action="<%=MM_editAction%>">
    > <input name="URL" type="text" id="URL">
    > <input type="submit" name="Submit" value="Submit">
    > <input type="hidden" name="MM_insert"
    value="form1">
    > </form>
    >

  • Pop up windows and hyperlinks on websites - Virus???

    I hope someone can help me with this pretty fast since I can't figure out how to fix it anywhere, and it slows down my working progress.. I recently started to get a whole bunch of pop up windows (usually when I click on a "search" window, for instance google) and hyperlinks on random words on the web-side I'm on (it can be any word on youtube, facebook, everything that usually are not a link). I've seen more people talk about macdefender etc, but I can't find this anywhere on my mac, so could it be anything else? And what should I do..?

    mdscardigno wrote:
    I ran Adware Medic and it did not find any adware. The problem still persists.
    That is either because your problem isn't actually due to adware, or you've got some adware I've never seen, and thus have never incorporated into AdwareMedic's signatures.
    First, take a look here at some alternate, non-adware-related solutions to the problem:
    http://www.adwaremedic.com/kb/unsolved.php
    If none of that helps, you may have new adware. In that case, take a system snapshot with AdwareMedic and submit it. I'll take a look and see what I can find.
    (Fair disclosure: I may receive compensation from links to my site and software, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • JACOB and pop up windows

    I am using JACOB to test a webapp that contains a proprietary activeX control. So far, so good...I can open a browser, navigate around, access the activeX control and call methods on it.
    The problem I have is that one of the webapp links pops up a vbscript window and I cant seem to access it to "click OK" on it. Does anyone know how I can access the dialog window or any other popped up windows? Any help or suggestions is greatly appreciated. I think JACOB is a pretty fantastic library...but really suffers in the documentation aspect and therefore requires a lot of experimenting and tinkering. Cheers.

    I usually create some javascript/php app that calls image
    files from a specific folder. In that folder the Contribute user
    uploads images (menu: File, Publish file from my computer) and the
    thumbnails can be created dynamically. Some lightbox scripting
    would be nice to, instead of using popups.

  • Contribute and Pop-Up windows

    Hi there,
    Offently I have user that want pop-up windows on their site
    to provide enlarged view of thumbnail pics to their website
    visitors. Of course with a little javascript fonction and a link do
    the trick.
    But how to provide Contribute Users the possibility to add
    more thumbnails and a larger associated view in a pop-up window
    using a javascript link?
    Code:
    quote:
    <a href="/i/terrasse.htm" onclick="return
    popup('/p/en/terrasse.php')"><img src="/i/terrasse_s.jpg"
    alt="Terrasse View" width="350" height="258"
    class="image_align_left" /></a>
    Javascript:
    quote:
    function popup(url, name, width, height) {
    var settings =
    "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes, width="+width+",height="+height;
    window.open(url,name, settings);
    Any idea?

    I usually create some javascript/php app that calls image
    files from a specific folder. In that folder the Contribute user
    uploads images (menu: File, Publish file from my computer) and the
    thumbnails can be created dynamically. Some lightbox scripting
    would be nice to, instead of using popups.

  • Question with pop up windows

    hi there, i have a page with a few quiz quesitons on it and i
    have a link to open up a pop-up box with the answer. however, in
    order to use the behaviors panel to make the link, i had to put a
    "#" sign into the text of the link. the problem is that i think
    this is making the page jump to the very top when the link is
    clicked. you can see the page here:
    http://www.traceyfern.com/buffalomusic.html
    is there another way that i can get the pop-up window to open
    as it does yet not have the originating page jump to the top? any
    advice would be appreciated.
    thanks!
    denise

    Change your code to this:
    <a href="buffaloquiz/question1.html"
    onclick="MM_openBrWindow(this.href,'','scrollbars=yes,resizable=yes,width=350,height=450' );return
    false">click for answer</a>
    That will work, but, having said that, in my opinion opening
    a popup
    window to see the answer is more than a little ponderous.
    Take a look
    at my divaFAQ DW Extension, as I really think it would be
    better option
    for your page.
    Here's an example:
    http://www.squamscott.org/scc_faq.asp
    and here's more about it:
    http://www.divahtml.com/products/divaFAQ/toggle_answers.php
    E. Michael Brandt
    www.divaHTML.com
    divaPOP : standards-compliant popup windows
    divaGPS : you-are-here menu highlighting
    divaFAQ : FAQ pages with pizazz
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Opening a pop up window from another pop up window

    Hi i'm having difficulty doing this, i'm redoing the business
    directory at this address:
    http://www.localeyenewspaper.com/business.html
    When you click on an ad, on some companies that have website
    i want to put a link below the ad in the pop up window and when the
    user clicks on it another pop up window opens with their site.
    However when i tried to do this instead of another window opening,
    the window with the advert went to the site, and it also stayed the
    same size without resizing to the dimensions i need to display the
    website, can anyone help me? Thanks

    <script type="text/javascript">
    <!--
    var newWin2;
    function MM_openBrWindow2(theURL,winName,features) {
    //v2.0custom
    newWin2=window.open(theURL,winName,features);
    //-->
    </script>
    <a href="
    http://www.dmpowerwashing.co.uk"
    class="style1"
    onclick="MM_openBrWindow2('
    http://www.dmpowerwashing.co.uk','dm','toolbar=yes,loc
    ation=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1200,height=
    800');return false;">
    Note I've renamed the function and the function call (and
    added "return
    false" to the latter.) This means you'll no longer be able to
    modify it
    using the OpenBrowserWindow behavior in the Behaviors window.
    emichael
    Stuart.hamilton wrote:
    > Here's the code for a pop up window that i want to link
    to another pop up.
    > Where would i put the new code in this? thanks
    >
    > <!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>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > .style1 {font-family: Verdana, Arial, Helvetica,
    sans-serif}
    > -->
    > </style>
    > <script type="text/javascript">
    > <!--
    > function MM_openBrWindow(theURL,winName,features) {
    //v2.0
    > window.open(theURL,winName,features);
    > }
    > //-->
    > </script>
    > </head>
    >
    > <body>
    > <p><img src="../ADs/Useful services
    /Power-washing2.png" width="394"
    > height="438" /></p>
    > <p><a href="
    http://www.dmpowerwashing.co.uk"
    class="style1"
    > onclick="MM_openBrWindow('
    http://www.dmpowerwashing.co.uk','dm','toolbar=yes,loc
    >
    ation=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=1200,height=
    > 800')">www.dmpowerwashing.co.uk</a></p>
    > </body>
    > </html>
    >
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Disable Right Click on Pop Up window

    Does anyone know how I can disable the right click on a pop up window? Its an art site and the artists want their stuff protected even minimally. Heres my pop up code what do I need to add?
    function popUpImage2()
        var popupimage = document.getElementById("image2").src;
        newwindow=window.open(popupimage,"POPUP","height=400,width=400");
        if (window.focus) newwindow.focus();

    not 100% sure as it isn't tested but you could always do
    function popUpImage2(){
        var  popupimage = document.getElementById("image2").src;
         newwindow=window.open(popupimage,"POPUP","height=400,width=400");
        if  (window.focus) newwindow.focus();
         newwindow.document.onmousedown = function(){
              if  (event.button==2){
                 alert("Right click disabled");
                   return false;
    That may work but it doesn't stop the person going to the file menu and clicking save so pointless really, you would be better off loading a dynamic php page with the image name in the query string.

  • Virus? A pop up window saying the flash player is infected

    Hi there I suddenly got a pop up window when I was browsing Facebook. It says
    WARNING!
    Your video player is infected!
    System has two malicious viruses: Rootkit.Sirefef.Spy und Trojan.FakeAV-Download. Your personal and financial information is not secure.
    Remove viruses, Please promptly update your video player:
    Is this a virus? I am sorry if I asked a stupid question but I am really confused. I am using Mac with google chrome as my browser.
    Thanks a lot for your help.
    link:http://update3.flash-palys.us/Player/Warning-uk.php?installer=Flash_Player_11_for_Other_Br owsers&browser_type=KHTML&dualoffer=false

    Well, you can relax... BOTH of the "infections" it lists ( a "Rootkit" and a "Trojan").... WON'T run on a Mac, so you KNOW it's a fake. There's NO WAY it could have detected WIndows malware on a system running OS X.
    I'd stay away from that Facebook page, and report it to them.

Maybe you are looking for

  • Dynamic File name in IR bypass scenario

    Hi All, i have a scenario , where i am bypassing my IR part. i need to transfer image files from one location to another. Now i need to create the Directory as current date and Filename with what i have in sender file name. Any clue guyz?

  • Chart X Axis Monthly Dates

    I am using Crystal Reports XI R2 and am having problems with setting up a chart that contains up to one year's worth of daily data, with potentially missing days.  The chart needs to have a label once per month. When the X axis is set up as a date, C

  • Reader DC: DDE open command

    Hello, I am creating PDFs in a separate program, which uses a DDE command to automatically open the PDF in Adobe Reader once the PDF is created. This command is not successfully opening the PDF, although manually opening the PDF works fine. I know th

  • Best photo editing for mac

    Is there a "best" photo editing app for mac that may do a little more than iphoto? I'm interested in helping my photos to look a little better as far as lighting, contrast, etc. but not fake stuff like photoshop effects. I'm a newbie at this. Maybe I

  • ArrayList -- MenuBar Data Provider

    Hello everyone, I have a remote service that provides an array list containing a menu structure. But since its just a List i would still have to rework the structure for the menubar container to get the child-structure right. Can anyone tell me how i