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 15:08:18 +04:00
|
|
|
document.getElementById("wrap700").style.width = document.documentElement.clientWidth < 750 ? "750px" : "100%";
|
2009-03-13 03:52:37 +03:00
|
|
|
}
|
|
|
|
if(document.getElementById("wrap400")) {
|
2009-08-11 15:08:18 +04:00
|
|
|
document.getElementById("wrap400").style.width = document.documentElement.clientWidth < 450 ? "450px" : "100%";
|
2009-03-13 03:52:37 +03:00
|
|
|
}
|
2009-03-12 04:07:35 +03:00
|
|
|
};
|