function picture_view(url,width,height)
{
//    LeftPosition=(screen.width)?parseInt((screen.width-width)/2):(screen.availWidth)?parseInt((screen.availWidth-width)/2):100;
//    TopPosition=(screen.height)?parseInt((screen.height-height)/2):(screen.availHeight)?parseInt((screen.availHeight-height)/2):100;
    LeftPosition=(screen.availWidth)?parseInt((screen.availWidth-width)/2):100;
    TopPosition=(screen.availHeight)?parseInt((screen.availHeight-height)/2):100;
    javascript:window.open(
        url
        , 'viewPhoto'
        , 'left='+LeftPosition
        +',top='+TopPosition
        +',width='+width
        +',height='+height
        +',toolbar=0'
        +',resizable=1'
        +',scrollbars=1');
}

function video_view(width,height)
{
//    LeftPosition=(screen.width)?parseInt((screen.width-width)/2):(screen.availWidth)?parseInt((screen.availWidth-width)/2):100;
//    TopPosition=(screen.height)?parseInt((screen.height-height)/2):(screen.availHeight)?parseInt((screen.availHeight-height)/2):100;
    LeftPosition=(screen.availWidth)?parseInt((screen.availWidth-width)/2):100;
    TopPosition=(screen.availHeight)?parseInt((screen.availHeight-height)/2):100;
    javascript:window.open(
        'http://www.ncstu.ru/viewVideo'
        , 'viewVideo'
        , 'left='+LeftPosition
        +',top='+TopPosition
        +',width='+width
        +',height='+height
        +',toolbar=0'
        +',resizable=1'
        +',scrollbars=1');
}
