The original image is of 252*62 pixels..
I have used the following code..but it doesnt seem to work.
<script type="text/javascript">
function resizeheight() {
var height = ((62*screen.height)/800);
return height;
}
function resizewidth() {
var width = ((252*screen.width)/1280);
return width;
}
<img id="enter" src="enter.PNG" height="resizeheight()" width="resizewidth()" >
Help















