Advertisement
Advertisement
| 08.27.2008 at 06:09AM PDT, ID: 23681810 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: |
<!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>tech specs image</title>
<script type="text/javascript" language="javascript">
var arrTemp=self.location.href.split("?");
var picUrl = (arrTemp.length>0)?arrTemp[1]:"";
var NS = (navigator.appName=="Netscape")?true:false;
function FitPic() {
iWidth = (NS)?window.innerWidth:document.body.clientWidth;
iHeight = (NS)?window.innerHeight:document.body.clientHeight;
iWidth = document.images[0].width - iWidth;
iHeight = document.images[0].height - iHeight;
window.resizeBy(iWidth,iHeight);
self.focus();
};
</script>
<style type="text/css">
html, body {
height:100%;
margin:0;
padding:0;
}
</style>
</head>
<body onload='FitPic();' style="margin: 0px; background: #FFFFF;">
<script type="text/javascript" language="javascript">
document.write( "<a href='javascript:window.close()'><center><img src='" +picUrl +"' border=0></center></a>" );
</script>
</body>
</html>
|