java script
I need to know here whatever code seen in head section are remain constent or if i feel i need to change then it has to change or ramain constent. And on the body section
If click the open grid one new page has create,i have tried to chage inplace of grid its won't be worked what is the reason
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Example: Opening a window via a link</title>
<style type="text/css">
</style>
<script type="text/javascript">
function popup(){
var windowprops="width=400,height=500,top=200,left=200";
var myWin = window.open("grid.html","mynewwin",windowprops);
}
</script>
</head>
<body>
<p>
<a href="#" onclick="popup();return false">Open grid</a>
</p>
</body>
</html>