[新着] Webテンプレートを仮オープンしました
<html>
<head>
<script type="text/javascript">
var defaultHeight;
function setSize(){
window.resizeTo(800,700);
defaultHeight = document.body.clientHeight;
if(!defaultHeight){
defaultHeight = window.outerHeight;
}
}
function forceSize(){
if(!defaultHeight){
return false;
}
currentHeight = document.body.clientHeight;
if(!currentHeight){
currentHeight = window.outerHeight;
}
hSpan = defaultHeight - currentHeight;
window.resizeBy(0, hSpan);
}
window.onload = setSize;
window.onresize = forceSize;
</script>
</head>
<body>
</body>
</html>