2009-03-12 04:07:35 +03:00
|
|
|
window.attachEvent('onload', mkwidth);
|
|
|
|
window.attachEvent('onresize', mkwidth);
|
|
|
|
|
|
|
|
function mkwidth(){
|
2009-03-13 03:52:37 +03:00
|
|
|
if(document.getElementById("wrap700")) {
|
2009-08-11 13:41:13 +04:00
|
|
|
document.getElementById("wrap700").style.width = document.documentElement.clientWidth < 700 ? "750px" : "100%";
|
2009-03-13 03:52:37 +03:00
|
|
|
}
|
|
|
|
if(document.getElementById("wrap400")) {
|
2009-08-11 13:41:13 +04:00
|
|
|
document.getElementById("wrap400").style.width = document.documentElement.clientWidth < 400 ? "450px" : "100%";
|
2009-03-13 03:52:37 +03:00
|
|
|
}
|
2009-03-12 04:07:35 +03:00
|
|
|
};
|