Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">[/URL]
<html>
<head>
<title>
Test Popup
</title>
<script type="text/javascript" language="javascript">
function popup() {
var window_width = 300;
var window_height = 300;
var window_top = 0;
var window_left = screen.width - window_width;
var window_features = "height=" + window_height + ",width=" + window_width + ",top=" + window_top + ",left=" + window_left;
var win = window.open("[URL unfurl="true"]http://www.google.com",[/URL] "new_window", window_features);
}
</script>
</head>
<body onload = "popup()">
<p align = "center">
This is what you do with it.
</p>
</body>
</html>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">[/URL]
<html>
<head>
<title>
Test Popup
</title>
<script type="text/javascript" language="javascript">
function popup() {
var window_width = 300;
var window_height = 300;
var window_top = 0;
var window_left = screen.width - window_width;
var window_features = "height=" + window_height + ",width=" + window_width + ",top=" + window_top + ",left=" + window_left;
var win = window.open("[COLOR=red]fileInTheSameFolder.htm[/color]", "new_window", window_features);
}
</script>
</head>
<body onload = "popup()">
<p align = "center">
This is what you do with it.
</p>
</body>
</html>
where in your case fileInTheSameFolder.htm == catlist.htmvar win = window.open("fileInTheSameFolder.htm", "new_window", window_features);