View Single Post
  #7 (permalink)  
Old 10-18-08, 01:54 PM
GurkanAlkan GurkanAlkan is offline
Newbie Coder
 
Join Date: Oct 2008
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
If I understand you, this way can solve yoru problem.

First you can add a JavaScript file to your solution. And add this code to it:
Code:
function MyWindow()
{
    var pen = window.open("http://www.gurkanalkan.com","Besiktas JK","width=300,heigth=200,top=100,left=100");

}
For example you can add an HTML page to use it.
Code:
<!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>
    <title>Besiktas sen bizim her seyimizsin!!..</title>
    <script src="JScript.js" type="text/javascript"></script>
</head>
<body>

    <p>
        <input id="Button1" type="button" value="button" onclick="MyWindow();" /></p>

</body>
</html>

Last edited by GurkanAlkan; 10-18-08 at 01:55 PM. Reason: a little error
Reply With Quote