View Single Post
Unread 11-21-2008, 08:18 AM
ISMAILC ISMAILC is offline
Member
Join Date: Dec 2007
Posts: 45
  #2  
Default

Got help:

<script>
function maxGoto(webpage) {
// Move window to top left corner then resize it to screen size
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);

// Goto the specified web page
location.href=webpage;
return false;
}
</script>
</head>

<a href="#" onclick="maxGoto('http://srv8-z199/fcFlow/Home.aspx');"></a>
Reply With Quote