Small Business Website Design. Local, Mobile & Social Marketing.
Business to Customer Relationship Building One Link at a Time.
928-201-1832 Serving Bullhead City AZ, Golden Valley AZ,
Kingman AZ, Las Vegas NV,  Laughlin NV, Los Angeles CA,
Needles CA and surrounding areas
  • Home
  • Services
    • App Builder
    • Link Building Service
    • Local Business Directory List
    • Local Search Engine Marketing Service
    • Local Mobile SMS Marketing>
      • Local SMS Text Campaigns
      • Local SMS Lead Notifier
      • Local SMS Marketing for Real Estate
      • Local SMS Text Appointment Reminders
      • SMS Text Marketing for Restaurants
    • SEO Service
    • Social Media Marketing
    • Social Media Promotions
    • Website Design
  • Source Codes
    • Alerts>
      • Announcement Box
      • JavaScript Alert Box
      • jQuery Alert Box Plugin
      • POP UP Alert Box
      • Recent News Ticker
      • Text Alert Box
    • Browser>
      • Browser Drop
      • Chromeless POP-UP Windows
      • Cross-Browser Drop Shadow Box
      • JavaScript Mobile Redirect
      • JavaScript Redirect
      • No Right Click
      • Mouse Trail Effect
      • POP-UP Windows
      • Status Bar Scrolling Message
      • Splash Page
    • Buttons>
      • Add To Favorites Button
      • Close Window Button Close Browser Button
      • CSS Buttons
      • Highlighted Buttons
      • HTML Buttons
      • OnClick Message Button
      • Glossy Buttons With Rounded Corners
    • Colors>
      • Background Colors
      • HTML Color Chart
      • JavaScript Color Picker
    • Forms>
      • Add Site Submit Site Box
      • Change Background Colors Form
      • CSS Rounded Corners With Shadow Box
      • Enter Key Focus JavaScript
      • HTML E-Mail Form
      • Rate Our Site Box
      • Site Search Engine
      • Tables
      • Undeletable Text In Box
      • Voice Search Box
    • Games>
      • JavaScript Games>
        • Hangman JavaScript Code
        • Tic Tac Toe JavaScript Code
      • Flash Games>
        • Angry Birds Flash Code
        • Bloons 2 Flash Code
        • Spitfire 1940 Flash Code
    • Link Effects>
      • CSS Zoom
      • Hyperlinks
      • Hyperlink Colors
      • Image Links
    • Menus>
      • CSS Menu
      • Horizontal Menus
      • JavaScript Drop Down Menu
      • JavaScript Drop Down Menu Message Box
      • JavaScript Floating Menuu
      • JavaScript Pull Down Menu
    • Text Effects>
      • Backwards Text Effect
      • Dancing Links
      • CSS Text Glow Effect
      • CSS3 Text Shadow Effects
      • Flashing Text
      • Marquee Scroller Text
      • Named Anchors
      • Roller Coaster Text Effect
    • Tools>
      • Banner Rotator
      • GPA Calculator
      • JavaScript Clock
      • JavaScript Typing Test
      • Horizontal Lines
      • Keyword Suggestion Tool
      • Meta Tag Generator
      • HTML Copyright Symbol (©)
      • Password Protect Page
  • JavaScript Software
    • Banner Buddy
    • Drop Down Menu Generator Software
    • Drop Down Menu Template
    • Java Source Machine
    • Java Source Machine 2
    • JavaScript Pro
    • Script Jungle
    • Free Software>
      • Free Meta Tag Generator Software
  • JavaScripts and More Blog
  • Affiliates
    • Affiliate Marketing Program Software
    • Links Management
    • WWW Flash Templates
  • CSS Style Scripts
  • HTML Tutor
    • Dynamic HTML
    • HTML 5
    • HTML Codes Reference Chart
    • HTML Page With Left Navigation
    • HTML Special Characters
  • JavaScript
    • JavaScript 2>
      • JavaScript Toolbar
  • JavaScript Search Engine
  • Game Blog
  • Articles
  • Local SEO Forums
  • Link Exchange
    • Marketing Links>
      • Banner Marketing Links
      • Blog Marketing Links
      • Directory Marketing Links
      • Email Marketing Links
      • Link Marketing
      • Local Marketing Links
      • Search Engine Marketing Links
      • Social Marketing Links
      • Web Marketing Links
      • Website Submit Links
    • Web Development Links>
      • Flash Editor Links
      • Search Engine Optimization Links
      • Shopping Cart Links
      • Site Builder Links
      • Software Links
      • Tutorials Coding Links
      • Web Hosting Links

Chromeless POP-UP Windows

Article - How to create simple chromeless popup windows. 
Hate 'em or love 'em; popup windows are a constant companion during our Internet surfing. But they can be quite useful, especially the chromeless variety.
 A chromeless popup window is one that doesn't show the browsers menu or tool bar, but does retain the title bar (for easy closing). Some visitors have so many options on their tool bars that they take up over a quarter of the screen height!
 Chrome less popup windows are a great way to deliver list information and extra help for filling in forms without bogging down your pages.
 There are many scripts available for creating popups, but sometimes you'll just want something simple that won't require you to incorporate 100 lines of JavaScript!
 This particular chromeless popup window procedure will work in Netscape and IE Versions 4+. It will create a link activated window of a fixed size, but will allow for scrollbars if necessary.
INSTRUCTIONS: 
First, create and save a standard page with the information you wish to be displayed in the popup window. The elements should be placed within a table structure. Suggested width of table: around 330 - 350 pixels. 

And if you want to create a "Close this Window" statement in the page: 

<a href="javascript:self.close()">Close this window</a></td> 
If you choose not to include this snippet, visitors will still be able to close the window via the popup window title bar controls.

Second, the script to launch the chromeless popup window. Copy and paste this into the HTML (between the <body> and </body> tags) of the page you wish to launch the popup from (change the properties in capital letters to suit): 

<script>
function openpopup(){
var popurl="PATH TO PAGE YOU CREATED"
winpops=window.open(popurl,"","width=390,height=490,scrollbars,")
}
</script>
<!-- End --> 
You can change width and height to suit, but don't make it too narrow, otherwise site visitors will need to scroll horizontally to view the content. Too wide a setting will cover the majority of the screen area for those users still running 640x480 resolution.

When copying scripts like the one above, ensure you paste it into Notepad first; then copy it again and transfer it to your HTML. Copying and pasting code straight from a web page can produce some pretty weird results.

Next, the hyperlink to use to engage the script (Change the properties in capital letters to suit): 

<a href="javascript:openpopup()">CLICK HERE</a> 
Done!
One More Frameless Popup STEP 1.
Inserting the <script> in your page

Put the following <script> </script> in the head
section of your launching page. 

Set the variables as indicated in the script.

<script>

// Amazing Frameless Popup Window - Version I
// (C) 2000 www.CodeLifter.com
// Free for all users, but leave in this header

// set the popup window width and height

var windowW=214 // wide
var windowH=398 // high

// set the screen position where the popup should appear

var windowX = 260 // from left
var windowY = 100 // from top

// set the url of the page to show in the popup

var urlPop = "yourpage.html"

// set the title of the page

var title = "This Is A Frameless Popup Window"

// set this to true if the popup should close
// upon leaving the launching page; else, false

var autoclose = true

// ============================
// do not edit below this line
// ============================

s = "width="+windowW+",height="+windowH;
var beIE = document.all?true:false

function openFrameless(){
if (beIE){
NFW = window.open("","popFrameless","fullscreen,"+s) 
NFW.blur()
window.focus() 
NFW.resizeTo(windowW,windowH)
NFW.moveTo(windowX,windowY)
var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 
frameborder=0>"+
"<frame name='top' src='"+urlPop+"' scrolling=auto>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
NFW.document.open();
NFW.document.write(frameString)
NFW.document.close()
} else {
NFW=window.open(urlPop,"popFrameless","scrollbars,"+s)
NFW.blur()
window.focus() 
NFW.resizeTo(windowW,windowH)
NFW.moveTo(windowX,windowY)
} 
NFW.focus() 
if (autoclose){
window.onunload = function(){NFW.close()}
}
}

</script>

=================================================

STEP 2.
Triggering the popup window

Call the openFrameless function from a link, like this:

<a href="javascript:openFrameless()">click here</a>

Category-Browser

Tags-Chromeless pop-up Windows
chromeless popup

Social

SiteMap

XML SiteMap

Payments

Official PayPal Seal

Share

Legal

Privacy Policy
Terms Of Service

Organizations

Website Design in Bullhead City

About

  • About Us
  • Contact Us
  • " By Shawn Lippert"
  • Website Design, Search Engine Marketing, Search Engine Optimization, Social Media Optimization,  and Website Consultation serving Bullhead City, Las Vegas, Kingman, Golden Valley, Needles, Clark County, Mohave County & surrounding areas.
          JavaScripts and More
          1671 River Gardens Dr
          Bullhead City, AZ 86442

Google
Copyright © 2013 JavaScripts and More a Source Code, Website Design and SEO Company
  • Home
  • Services
    • App Builder
    • Link Building Service
    • Local Business Directory List
    • Local Search Engine Marketing Service
    • Local Mobile SMS Marketing>
      • Local SMS Text Campaigns
      • Local SMS Lead Notifier
      • Local SMS Marketing for Real Estate
      • Local SMS Text Appointment Reminders
      • SMS Text Marketing for Restaurants
    • SEO Service
    • Social Media Marketing
    • Social Media Promotions
    • Website Design
  • Source Codes
    • Alerts>
      • Announcement Box
      • JavaScript Alert Box
      • jQuery Alert Box Plugin
      • POP UP Alert Box
      • Recent News Ticker
      • Text Alert Box
    • Browser>
      • Browser Drop
      • Chromeless POP-UP Windows
      • Cross-Browser Drop Shadow Box
      • JavaScript Mobile Redirect
      • JavaScript Redirect
      • No Right Click
      • Mouse Trail Effect
      • POP-UP Windows
      • Status Bar Scrolling Message
      • Splash Page
    • Buttons>
      • Add To Favorites Button
      • Close Window Button Close Browser Button
      • CSS Buttons
      • Highlighted Buttons
      • HTML Buttons
      • OnClick Message Button
      • Glossy Buttons With Rounded Corners
    • Colors>
      • Background Colors
      • HTML Color Chart
      • JavaScript Color Picker
    • Forms>
      • Add Site Submit Site Box
      • Change Background Colors Form
      • CSS Rounded Corners With Shadow Box
      • Enter Key Focus JavaScript
      • HTML E-Mail Form
      • Rate Our Site Box
      • Site Search Engine
      • Tables
      • Undeletable Text In Box
      • Voice Search Box
    • Games>
      • JavaScript Games>
        • Hangman JavaScript Code
        • Tic Tac Toe JavaScript Code
      • Flash Games>
        • Angry Birds Flash Code
        • Bloons 2 Flash Code
        • Spitfire 1940 Flash Code
    • Link Effects>
      • CSS Zoom
      • Hyperlinks
      • Hyperlink Colors
      • Image Links
    • Menus>
      • CSS Menu
      • Horizontal Menus
      • JavaScript Drop Down Menu
      • JavaScript Drop Down Menu Message Box
      • JavaScript Floating Menuu
      • JavaScript Pull Down Menu
    • Text Effects>
      • Backwards Text Effect
      • Dancing Links
      • CSS Text Glow Effect
      • CSS3 Text Shadow Effects
      • Flashing Text
      • Marquee Scroller Text
      • Named Anchors
      • Roller Coaster Text Effect
    • Tools>
      • Banner Rotator
      • GPA Calculator
      • JavaScript Clock
      • JavaScript Typing Test
      • Horizontal Lines
      • Keyword Suggestion Tool
      • Meta Tag Generator
      • HTML Copyright Symbol (©)
      • Password Protect Page
  • JavaScript Software
    • Banner Buddy
    • Drop Down Menu Generator Software
    • Drop Down Menu Template
    • Java Source Machine
    • Java Source Machine 2
    • JavaScript Pro
    • Script Jungle
    • Free Software>
      • Free Meta Tag Generator Software
  • JavaScripts and More Blog
  • Affiliates
    • Affiliate Marketing Program Software
    • Links Management
    • WWW Flash Templates
  • CSS Style Scripts
  • HTML Tutor
    • Dynamic HTML
    • HTML 5
    • HTML Codes Reference Chart
    • HTML Page With Left Navigation
    • HTML Special Characters
  • JavaScript
    • JavaScript 2>
      • JavaScript Toolbar
  • JavaScript Search Engine
  • Game Blog
  • Articles
  • Local SEO Forums
  • Link Exchange
    • Marketing Links>
      • Banner Marketing Links
      • Blog Marketing Links
      • Directory Marketing Links
      • Email Marketing Links
      • Link Marketing
      • Local Marketing Links
      • Search Engine Marketing Links
      • Social Marketing Links
      • Web Marketing Links
      • Website Submit Links
    • Web Development Links>
      • Flash Editor Links
      • Search Engine Optimization Links
      • Shopping Cart Links
      • Site Builder Links
      • Software Links
      • Tutorials Coding Links
      • Web Hosting Links